Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e3aafee3f2 | ||
|
|
d82e5908da |
@@ -1,6 +1,6 @@
|
||||
WordPress - Web publishing software
|
||||
|
||||
Copyright 2011-2017 by the contributors
|
||||
Copyright 2011-2016 by the contributors
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
||||
14
readme.html
14
readme.html
@@ -9,6 +9,7 @@
|
||||
<body>
|
||||
<h1 id="logo">
|
||||
<a href="https://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /></a>
|
||||
<br /> Version 4.5
|
||||
</h1>
|
||||
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||
|
||||
@@ -52,16 +53,15 @@
|
||||
|
||||
<h2>System Requirements</h2>
|
||||
<ul>
|
||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
|
||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>5.2.4</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
|
||||
</ul>
|
||||
|
||||
<h3>Recommendations</h3>
|
||||
<ul>
|
||||
<li><a href="https://secure.php.net/">PHP</a> version <strong>7</strong> or higher.</li>
|
||||
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.6</strong> or higher.</li>
|
||||
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
|
||||
<li><a href="http://php.net/">PHP</a> version <strong>5.6</strong> or higher.</li>
|
||||
<li><a href="http://www.mysql.com/">MySQL</a> version <strong>5.6</strong> or higher.</li>
|
||||
<li>The <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
||||
</ul>
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
<h2>Final Notes</h2>
|
||||
<ul>
|
||||
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="https://wordpress.org/support/">Support Forums</a>.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="https://developer.wordpress.org/plugins/">Plugin Developer Handbook</a>. You shouldn’t modify any of the core code.</li>
|
||||
<li>WordPress has a robust plugin <abbr title="application programming interface">API</abbr> that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="https://codex.wordpress.org/Plugin_API" title="WordPress plugin API">plugin documentation in the Codex</a>. You shouldn’t modify any of the core code.</li>
|
||||
</ul>
|
||||
|
||||
<h2>Share the Love</h2>
|
||||
|
||||
@@ -32,17 +32,13 @@ $wp_query->is_404 = false;
|
||||
do_action( 'activate_header' );
|
||||
|
||||
/**
|
||||
* Adds an action hook specific to this page.
|
||||
*
|
||||
* Fires on {@see 'wp_head'}.
|
||||
* Adds an action hook specific to this page that fires on wp_head
|
||||
*
|
||||
* @since MU
|
||||
*/
|
||||
function do_activate_header() {
|
||||
/**
|
||||
* Fires before the Site Activation page is loaded.
|
||||
*
|
||||
* Fires on the {@see 'wp_head'} action.
|
||||
/**
|
||||
* Fires before the Site Activation page is loaded, but on the wp_head action.
|
||||
*
|
||||
* @since 3.0.0
|
||||
*/
|
||||
@@ -92,40 +88,25 @@ get_header( 'wp-activate' );
|
||||
$result = wpmu_activate_signup( $key );
|
||||
if ( is_wp_error($result) ) {
|
||||
if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
|
||||
$signup = $result->get_error_data();
|
||||
$signup = $result->get_error_data();
|
||||
?>
|
||||
<h2><?php _e('Your account is now active!'); ?></h2>
|
||||
<?php
|
||||
echo '<p class="lead-in">';
|
||||
if ( $signup->domain . $signup->path == '' ) {
|
||||
printf(
|
||||
/* translators: 1: login URL, 2: username, 3: user email, 4: lost password URL */
|
||||
__( 'Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ),
|
||||
network_site_url( 'wp-login.php', 'login' ),
|
||||
$signup->user_login,
|
||||
$signup->user_email,
|
||||
wp_lostpassword_url()
|
||||
);
|
||||
printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() );
|
||||
} else {
|
||||
printf(
|
||||
/* translators: 1: site URL, 2: site domain, 3: username, 4: user email, 5: lost password URL */
|
||||
__( 'Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.' ),
|
||||
'http://' . $signup->domain,
|
||||
$signup->domain,
|
||||
$signup->user_login,
|
||||
$signup->user_email,
|
||||
wp_lostpassword_url()
|
||||
);
|
||||
printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() );
|
||||
}
|
||||
echo '</p>';
|
||||
} else {
|
||||
?>
|
||||
<h2><?php _e( 'An error occurred during the activation' ); ?></h2>
|
||||
<p><?php echo $result->get_error_message(); ?></p>
|
||||
<h2><?php _e('An error occurred during the activation'); ?></h2>
|
||||
<?php
|
||||
echo '<p>'.$result->get_error_message().'</p>';
|
||||
}
|
||||
} else {
|
||||
$url = isset( $result['blog_id'] ) ? get_home_url( (int) $result['blog_id'] ) : '';
|
||||
$url = isset( $result['blog_id'] ) ? get_blogaddress_by_id( (int) $result['blog_id'] ) : '';
|
||||
$user = get_userdata( (int) $result['user_id'] );
|
||||
?>
|
||||
<h2><?php _e('Your account is now active!'); ?></h2>
|
||||
@@ -140,15 +121,9 @@ get_header( 'wp-activate' );
|
||||
$login_url = wp_login_url();
|
||||
restore_current_blog();
|
||||
?>
|
||||
<p class="view"><?php
|
||||
/* translators: 1: site URL, 2: login URL */
|
||||
printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) );
|
||||
?></p>
|
||||
<p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); ?></p>
|
||||
<?php else: ?>
|
||||
<p class="view"><?php
|
||||
/* translators: 1: login URL, 2: network home URL */
|
||||
printf( __( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() );
|
||||
?></p>
|
||||
<p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p>
|
||||
<?php endif;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,32 +9,27 @@
|
||||
/** WordPress Administration Bootstrap */
|
||||
require_once( dirname( __FILE__ ) . '/admin.php' );
|
||||
|
||||
if ( ! wp_is_mobile() ) {
|
||||
wp_enqueue_style( 'wp-mediaelement' );
|
||||
wp_enqueue_script( 'wp-mediaelement' );
|
||||
wp_localize_script( 'mediaelement', '_wpmejsSettings', array(
|
||||
'pluginPath' => includes_url( 'js/mediaelement/', 'relative' ),
|
||||
'pauseOtherPlayers' => '',
|
||||
) );
|
||||
if ( current_user_can( 'customize' ) ) {
|
||||
wp_enqueue_script( 'customize-loader' );
|
||||
}
|
||||
|
||||
$video_url = 'https://videopress.com/embed/AHz0Ca46?hd=true';
|
||||
$lang_code = str_replace( '_', '-', get_user_locale() );
|
||||
list( $lang_code ) = explode( '-', $lang_code );
|
||||
if ( 'en' !== $lang_code ) {
|
||||
$video_url = add_query_arg( 'defaultLangCode', $lang_code, $video_url );
|
||||
$video_url = 'https://videopress.com/embed/scFdjVo6?hd=true';
|
||||
$locale = str_replace( '_', '-', get_locale() );
|
||||
list( $locale ) = explode( '-', $locale );
|
||||
if ( 'en' !== $locale ) {
|
||||
$video_url = add_query_arg( 'defaultLangCode', $locale, $video_url );
|
||||
}
|
||||
|
||||
$title = __( 'About' );
|
||||
|
||||
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||||
list( $display_version ) = explode( '-', $wp_version );
|
||||
|
||||
include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
?>
|
||||
<div class="wrap about-wrap">
|
||||
<h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
|
||||
|
||||
<p class="about-text"><?php printf( __( 'Thank you for updating to the latest version! WordPress %s adds more ways for you to express yourself and represent your brand.' ), $display_version ); ?></p>
|
||||
<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s streamlines your workflow, whether you’re writing or building your site.' ), $display_version ); ?></div>
|
||||
<div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
|
||||
|
||||
<h2 class="nav-tab-wrapper wp-clearfix">
|
||||
@@ -43,184 +38,147 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
|
||||
</h2>
|
||||
|
||||
<div class="feature-section one-col">
|
||||
<div class="col">
|
||||
<h2><?php _e( 'An Update with You in Mind' ); ?></h2>
|
||||
<p class="lead-description"><?php _e( 'WordPress 4.8 adds some great new features. Gear up for a more intuitive WordPress!' ); ?></p>
|
||||
<p><?php _e( 'Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.' ); ?></p>
|
||||
</div>
|
||||
<div class="headline-feature feature-video" style="background-color:#191E23;">
|
||||
<iframe width="1050" height="591" src="<?php echo esc_url( $video_url ); ?>" frameborder="0" allowfullscreen></iframe>
|
||||
<script src="https://videopress.com/videopress-iframe.js"></script>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<h2><?php _e( 'Exciting Widget Updates' ); ?></h2>
|
||||
|
||||
<div class="headline-feature one-col">
|
||||
<div class="col">
|
||||
<picture>
|
||||
<!-- Large image -->
|
||||
<source media="( min-width: 1050px )"
|
||||
srcset="
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_810.png 810w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_1054.png 1054w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_1266.png 1266w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_1458.png 1458w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_1633.png 1633w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_1797.png 1797w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_1955.png 1955w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-widescreen_w_2100.png 2100w"
|
||||
sizes="( max-width: 1290px ) calc( 100vw - 240px ), 1050px" />
|
||||
<!-- Medium image -->
|
||||
<source media="( min-width: 601px )"
|
||||
srcset="
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_531.png 531w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_745.png 745w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_927.png 927w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_1089.png 1089w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_1236.png 1236w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_1370.png 1370w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_1498.png 1498w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four_w_1620.png 1620w"
|
||||
sizes="( max-width: 782px ) calc( 100vw - 70px ), ( max-width: 960px ) calc( 100vw - 116px ), calc( 100vw - 240px )" />
|
||||
<!-- Small image -->
|
||||
<img src="https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_685.png"
|
||||
srcset="
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_300.png 300w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_451.png 451w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_575.png 575w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_685.png 685w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_784.png 784w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_873.png 873w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_959.png 959w,
|
||||
https://s.w.org/images/core/4.8/widgets-with-all-four-mobile_w_1040.png 1040w"
|
||||
sizes="( max-width: 500px ) calc( 100vw - 40px ), calc( 100vw - 70px )"
|
||||
alt="" />
|
||||
</picture>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<div class="feature-section two-col">
|
||||
<h2><?php _e( 'Editing Improvements' ); ?></h2>
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Image Widget' ); ?></h3>
|
||||
<p><?php _e( 'Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.' ); ?></p>
|
||||
<img src="https://s.w.org/images/core/4.5/link-edit-560.png" alt="" srcset="https://s.w.org/images/core/4.5/link-edit-1000.png 1000w, https://s.w.org/images/core/4.5/link-edit-800.png 800w, https://s.w.org/images/core/4.5/link-edit-680.png 680w, https://s.w.org/images/core/4.5/link-edit-560.png 560w, https://s.w.org/images/core/4.5/link-edit-400.png 400w, https://s.w.org/images/core/4.5/link-edit-280.png 280w" sizes="(max-width: 500px) calc(100vw - 40px), (max-width: 781px) calc((100vw - 70px) * .466), (max-width: 959px) calc((100vw - 116px) * .469), (max-width: 1290px) calc((100vw - 240px) * .472), 496px"/>
|
||||
<h3><?php _e( 'Inline Linking' ); ?></h3>
|
||||
<p><?php _e( 'Stay focused on your writing with a less distracting interface that keeps you in place and allows you to easily link to your content.' ); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Video Widget' ); ?></h3>
|
||||
<p><?php _e( 'A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.' ); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Audio Widget' ); ?></h3>
|
||||
<p><?php _e( 'Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!' );?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Rich Text Widget' ); ?></h3>
|
||||
<p><?php _e( 'This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.' ); ?></p>
|
||||
<img src="https://s.w.org/images/core/4.5/formatting-560.png" alt="" srcset="https://s.w.org/images/core/4.5/formatting-1000.png 1000w, https://s.w.org/images/core/4.5/formatting-800.png 800w, https://s.w.org/images/core/4.5/formatting-680.png 680w, https://s.w.org/images/core/4.5/formatting-560.png 560w, https://s.w.org/images/core/4.5/formatting-400.png 400w, https://s.w.org/images/core/4.5/formatting-280.png 280w" sizes="(max-width: 500px) calc(100vw - 40px), (max-width: 781px) calc((100vw - 70px) * .466), (max-width: 959px) calc((100vw - 116px) * .469), (max-width: 1290px) calc((100vw - 240px) * .472), 496px"/>
|
||||
<h3><?php _e( 'Formatting Shortcuts' ); ?></h3>
|
||||
<p><?php _e( 'Do you enjoy using formatting shortcuts for lists and headings? Now they’re even more useful, with horizontal lines and <code><code></code>.' ); ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="feature-section two-col">
|
||||
<h2><?php _e( 'Customization Improvements' ); ?></h2>
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Link Boundaries' ); ?></h3>
|
||||
<p><?php _e( 'Have you ever tried updating a link, or the text around a link, and found you can’t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.' ); ?></p>
|
||||
<img src="https://s.w.org/images/core/4.5/preview-icons-560.png" alt="" srcset="https://s.w.org/images/core/4.5/preview-icons-1000.png 1000w, https://s.w.org/images/core/4.5/preview-icons-800.png 800w, https://s.w.org/images/core/4.5/preview-icons-680.png 680w, https://s.w.org/images/core/4.5/preview-icons-560.png 560w, https://s.w.org/images/core/4.5/preview-icons-400.png 400w, https://s.w.org/images/core/4.5/preview-icons-280.png 280w" sizes="(max-width: 500px) calc(100vw - 40px), (max-width: 781px) calc((100vw - 70px) * .466), (max-width: 959px) calc((100vw - 116px) * .469), (max-width: 1290px) calc((100vw - 240px) * .472), 496px"/>
|
||||
<h3><?php _e( 'Live Responsive Previews' ); ?></h3>
|
||||
<p><?php _e( 'Make sure your site looks great on all screens!' ); ?>
|
||||
<?php
|
||||
if ( current_user_can( 'customize' ) ) {
|
||||
$customize_url = admin_url( 'customize.php' );
|
||||
printf(
|
||||
/* translators: %s: URL to customizer */
|
||||
__( 'Preview mobile, tablet, and desktop views directly in the <a href="%s" class="load-customize">customizer</a>.' ),
|
||||
esc_url( $customize_url )
|
||||
);
|
||||
} else {
|
||||
_e( 'Preview mobile, tablet, and desktop views directly in the customizer.' );
|
||||
}
|
||||
?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<?php
|
||||
echo wp_video_shortcode( array(
|
||||
'mp4' => 'https://s.w.org/images/core/4.8/link-boundaries.mp4',
|
||||
'poster' => 'https://s.w.org/images/core/4.8/link-boundaries.png',
|
||||
'width' => 1140,
|
||||
'height' => 624,
|
||||
// 'class' => 'wp-video-shortcode feature-video',
|
||||
) );
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="feature-section two-col">
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Nearby WordPress Events' ); ?></h3>
|
||||
|
||||
<p><?php _e( 'Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!' ); ?></p>
|
||||
|
||||
<p><?php _e( 'This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and WordPress Meetups — local to you — will be displayed.' ); ?>
|
||||
|
||||
<p><?php _e( 'Being part of the community can help you improve your WordPress skills and network with people you wouldn’t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.' ); ?>
|
||||
</div>
|
||||
<div class="col">
|
||||
<img
|
||||
src="https://s.w.org/images/core/4.8/events-widget_w_732.png"
|
||||
srcset="
|
||||
https://s.w.org/images/core/4.8/events-widget_w_280.png 280w,
|
||||
https://s.w.org/images/core/4.8/events-widget_w_420.png 420w,
|
||||
https://s.w.org/images/core/4.8/events-widget_w_529.png 529w,
|
||||
https://s.w.org/images/core/4.8/events-widget_w_638.png 638w,
|
||||
https://s.w.org/images/core/4.8/events-widget_w_732.png 732w,
|
||||
https://s.w.org/images/core/4.8/events-widget_w_827.png 827w,
|
||||
https://s.w.org/images/core/4.8/events-widget_w_992.png 992w"
|
||||
sizes="
|
||||
( max-width: 500px ) calc( 100vw - 40px ),
|
||||
( max-width: 782px ) calc( 48vw - 33px ),
|
||||
( max-width: 960px ) calc( 47vw - 54px ),
|
||||
( max-width: 1290px ) calc( 47vw - 112px ),
|
||||
496px"
|
||||
alt="" />
|
||||
<img src="https://s.w.org/images/core/4.5/custom-logos-560.png" alt="" srcset="https://s.w.org/images/core/4.5/custom-logos-1000.png 1000w, https://s.w.org/images/core/4.5/custom-logos-800.png 800w, https://s.w.org/images/core/4.5/custom-logos-680.png 680w, https://s.w.org/images/core/4.5/custom-logos-560.png 560w, https://s.w.org/images/core/4.5/custom-logos-400.png 400w, https://s.w.org/images/core/4.5/custom-logos-280.png 280w" sizes="(max-width: 500px) calc(100vw - 40px), (max-width: 781px) calc((100vw - 70px) * .466), (max-width: 959px) calc((100vw - 116px) * .469), (max-width: 1290px) calc((100vw - 240px) * .472), 496px"/>
|
||||
<h3><?php _e( 'Custom Logos' ); ?></h3>
|
||||
<p><?php _e( 'Themes can now support logos for your business or brand.' ); ?>
|
||||
<?php
|
||||
if ( current_theme_supports( 'custom-logo' ) && current_user_can( 'customize' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to Site Identity section of the customizer */
|
||||
__( 'Your theme supports custom logos! Try it out right now in the <a href="%s" class="load-customize">Site Identity</a> section of the customizer.' ),
|
||||
esc_url( add_query_arg( array( 'autofocus' => array( 'section' => 'title_tagline' ) ), $customize_url ) )
|
||||
);
|
||||
} else {
|
||||
_e( 'The Twenty Fifteen and Twenty Sixteen themes have been updated to support custom logos, which can be found in the Site Identity section of the customizer.' );
|
||||
}
|
||||
?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="changelog">
|
||||
<h2><?php
|
||||
printf(
|
||||
/* translators: %s: smiling face with smiling eyes emoji */
|
||||
__( 'Even More Developer Happiness %s' ),
|
||||
'😊'
|
||||
);
|
||||
?></h2>
|
||||
<h2><?php _e( 'Under the Hood' ); ?></h2>
|
||||
|
||||
<div class="under-the-hood three-col">
|
||||
<div class="col">
|
||||
<h3><a href="https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/"><?php _e( 'More Accessible Admin Panel Headings' ); ?></a></h3>
|
||||
<p><?php _e( 'New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.' ); ?></p>
|
||||
<h3><?php _e( 'Selective Refresh' ); ?></h3>
|
||||
<p><?php
|
||||
printf(
|
||||
/* translators: %s: URL to the development post of the new feature */
|
||||
__( 'The customizer now supports a <a href="%s">comprehensive framework</a> for rendering parts of the preview without rewriting your PHP code in JavaScript.' ),
|
||||
'https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/'
|
||||
);
|
||||
if ( current_user_can( 'customize' ) && current_user_can( 'edit_theme_options' ) ) {
|
||||
if ( current_theme_supports( 'menus' ) && ! current_theme_supports( 'customize-selective-refresh-widgets' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to Menus section of the customizer */
|
||||
' ' . __( 'See it in action with <a href="%s" class="load-customize">Menus</a>.' ),
|
||||
esc_url( add_query_arg( array( 'autofocus' => array( 'panel' => 'nav_menus' ) ), $customize_url ) )
|
||||
);
|
||||
} elseif ( current_theme_supports( 'customize-selective-refresh-widgets' ) ) { // If widgets are supported, menus are also because of the menus widget.
|
||||
printf(
|
||||
/* translators: 1: URL to Menus section of the customizer, 2: URL to Widgets section of the customizer */
|
||||
' ' . __( 'See it in action with <a href="%1$s" class="load-customize">Menus</a> or <a href="%2$s" class="load-customize">Widgets</a>.' ),
|
||||
esc_url( add_query_arg( array( 'autofocus' => array( 'panel' => 'nav_menus' ) ), $customize_url ) ),
|
||||
esc_url( add_query_arg( array( 'autofocus' => array( 'panel' => 'widgets' ) ), $customize_url ) )
|
||||
);
|
||||
}
|
||||
}
|
||||
?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><a href="https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/"><?php _e( 'Removal of Core Support for WMV and WMA Files' ); ?></a></h3>
|
||||
<p><?php _e( 'As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.' ); ?></p>
|
||||
<h3><?php _e( 'Smart Image Resizing' ); ?></h3>
|
||||
<p><?php
|
||||
printf(
|
||||
/* translators: %s: URL to the development post of the new feature */
|
||||
__( 'Generated images now load up to 50% faster with no noticeable quality loss. <a href="%s">It’s really cool</a>.' ),
|
||||
'https://make.wordpress.org/core/2016/03/12/performance-improvements-for-images-in-wordpress-4-5/'
|
||||
);
|
||||
?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><a href="https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/"><?php _e( 'Multisite Updates' ); ?></a></h3>
|
||||
<p><?php _e( 'New capabilities have been introduced to 4.8 with an eye towards removing calls to <code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.' ); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><a href="https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/"><?php _e( 'Text-Editor JavaScript API' ); ?></a></h3>
|
||||
<p><?php _e( 'With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!' ); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><a href="https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/"><?php _e( 'Media Widgets API' ); ?></a></h3>
|
||||
<p><?php _e( 'The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.' ); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><a href="https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/"><?php _e( 'Customizer Width Variable' ); ?></a></h3>
|
||||
<p><?php _e( 'Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.' ); ?></p>
|
||||
<h3><?php _e( 'JavaScript Library Updates' ); ?></h3>
|
||||
<p><?php _e( 'jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.' ); ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="under-the-hood two-col">
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Script Loader Improvements' ); ?></h3>
|
||||
<p><?php
|
||||
printf(
|
||||
/* translators: %s: wp_add_inline_script() */
|
||||
__( 'Better support has been added for script header/footer dependencies. New %s enables adding extra code to registered scripts.' ),
|
||||
'<code><a href="https://make.wordpress.org/core/2016/03/08/enhanced-script-loader-in-wordpress-4-5/">wp_add_inline_script()</a></code>'
|
||||
);
|
||||
?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h3><?php _e( 'Better Embed Templates' ); ?></h3>
|
||||
<p><?php
|
||||
printf(
|
||||
/* translators: %s: URL to the development post of the new feature */
|
||||
__( 'Embed templates have been split into parts and can be <a href="%s">directly overridden by themes</a> via the template hierarchy.' ),
|
||||
'https://make.wordpress.org/core/2016/03/11/embeds-changes-in-wordpress-4-5/'
|
||||
);
|
||||
?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="return-to-dashboard">
|
||||
<?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
|
||||
<a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>">
|
||||
<?php is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard → Updates' ); ?>
|
||||
</a> |
|
||||
<?php endif; ?>
|
||||
<a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard → Home' ) : _e( 'Go to Dashboard' ); ?></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="return-to-dashboard">
|
||||
<?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
|
||||
<a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>">
|
||||
<?php is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard → Updates' ); ?>
|
||||
</a> |
|
||||
<?php endif; ?>
|
||||
<a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard → Home' ) : _e( 'Go to Dashboard' ); ?></a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* WordPress Ajax Process Execution
|
||||
* WordPress AJAX Process Execution.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Executing Ajax process.
|
||||
* Executing AJAX process.
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
@@ -62,9 +62,7 @@ $core_actions_post = array(
|
||||
'send-attachment-to-editor', 'save-attachment-order', 'heartbeat', 'get-revision-diffs',
|
||||
'save-user-color-scheme', 'update-widget', 'query-themes', 'parse-embed', 'set-attachment-thumbnail',
|
||||
'parse-media-shortcode', 'destroy-sessions', 'install-plugin', 'update-plugin', 'press-this-save-post',
|
||||
'press-this-add-category', 'crop-image', 'generate-password', 'save-wporg-username', 'delete-plugin',
|
||||
'search-plugins', 'search-install-plugins', 'activate-plugin', 'update-theme', 'delete-theme',
|
||||
'install-theme', 'get-post-thumbnail-html', 'get-community-events',
|
||||
'press-this-add-category', 'crop-image', 'generate-password', 'save-wporg-username',
|
||||
);
|
||||
|
||||
// Deprecated
|
||||
@@ -81,20 +79,20 @@ add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
|
||||
|
||||
if ( is_user_logged_in() ) {
|
||||
/**
|
||||
* Fires authenticated Ajax actions for logged-in users.
|
||||
* Fires authenticated AJAX actions for logged-in users.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$_REQUEST['action']`,
|
||||
* refers to the name of the Ajax action callback being fired.
|
||||
* refers to the name of the AJAX action callback being fired.
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
do_action( 'wp_ajax_' . $_REQUEST['action'] );
|
||||
} else {
|
||||
/**
|
||||
* Fires non-authenticated Ajax actions for logged-out users.
|
||||
* Fires non-authenticated AJAX actions for logged-out users.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$_REQUEST['action']`,
|
||||
* refers to the name of the Ajax action callback being fired.
|
||||
* refers to the name of the AJAX action callback being fired.
|
||||
*
|
||||
* @since 2.8.0
|
||||
*/
|
||||
|
||||
@@ -9,11 +9,6 @@
|
||||
// don't load directly
|
||||
if ( !defined('ABSPATH') )
|
||||
die('-1');
|
||||
|
||||
/**
|
||||
* @global string $hook_suffix
|
||||
*/
|
||||
global $hook_suffix;
|
||||
?>
|
||||
|
||||
<div class="clear"></div></div><!-- wpbody-content -->
|
||||
@@ -33,7 +28,7 @@ global $hook_suffix;
|
||||
<?php
|
||||
$text = sprintf( __( 'Thank you for creating with <a href="%s">WordPress</a>.' ), __( 'https://wordpress.org/' ) );
|
||||
/**
|
||||
* Filters the "Thank you" text displayed in the admin footer.
|
||||
* Filter the "Thank you" text displayed in the admin footer.
|
||||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
@@ -45,7 +40,7 @@ global $hook_suffix;
|
||||
<p id="footer-upgrade" class="alignright">
|
||||
<?php
|
||||
/**
|
||||
* Filters the version/update text displayed in the admin footer.
|
||||
* Filter the version/update text displayed in the admin footer.
|
||||
*
|
||||
* WordPress prints the current version and update information,
|
||||
* using core_update_footer() at priority 10.
|
||||
@@ -63,7 +58,7 @@ global $hook_suffix;
|
||||
</div>
|
||||
<?php
|
||||
/**
|
||||
* Prints scripts or data before the default footer scripts.
|
||||
* Print scripts or data before the default footer scripts.
|
||||
*
|
||||
* @since 1.2.0
|
||||
*
|
||||
@@ -71,16 +66,6 @@ global $hook_suffix;
|
||||
*/
|
||||
do_action( 'admin_footer', '' );
|
||||
|
||||
/**
|
||||
* Prints scripts and data queued for the footer.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$hook_suffix`,
|
||||
* refers to the global hook suffix of the current page.
|
||||
*
|
||||
* @since 4.6.0
|
||||
*/
|
||||
do_action( "admin_print_footer_scripts-{$hook_suffix}" );
|
||||
|
||||
/**
|
||||
* Prints any scripts and data queued for the footer.
|
||||
*
|
||||
@@ -89,14 +74,17 @@ do_action( "admin_print_footer_scripts-{$hook_suffix}" );
|
||||
do_action( 'admin_print_footer_scripts' );
|
||||
|
||||
/**
|
||||
* Prints scripts or data after the default footer scripts.
|
||||
* Print scripts or data after the default footer scripts.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$hook_suffix`,
|
||||
* The dynamic portion of the hook name, `$GLOBALS['hook_suffix']`,
|
||||
* refers to the global hook suffix of the current page.
|
||||
*
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @global string $hook_suffix
|
||||
* @param string $hook_suffix The current admin page.
|
||||
*/
|
||||
do_action( "admin_footer-{$hook_suffix}" );
|
||||
do_action( "admin_footer-" . $GLOBALS['hook_suffix'] );
|
||||
|
||||
// get_site_option() won't exist when auto upgrading from <= 2.7
|
||||
if ( function_exists('get_site_option') ) {
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
* @subpackage Administration
|
||||
*/
|
||||
|
||||
_deprecated_file( basename(__FILE__), '2.5.0', 'wp-admin/includes/admin.php' );
|
||||
_deprecated_file( basename(__FILE__), '2.5', 'wp-admin/includes/admin.php' );
|
||||
|
||||
/** WordPress Administration API: Includes all Administration functions. */
|
||||
require_once(ABSPATH . 'wp-admin/includes/admin.php');
|
||||
|
||||
@@ -18,11 +18,12 @@ if ( ! defined( 'WP_ADMIN' ) )
|
||||
* @global WP_Screen $current_screen
|
||||
* @global WP_Locale $wp_locale
|
||||
* @global string $pagenow
|
||||
* @global string $wp_version
|
||||
* @global string $update_title
|
||||
* @global int $total_update_count
|
||||
* @global string $parent_file
|
||||
*/
|
||||
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow,
|
||||
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version,
|
||||
$update_title, $total_update_count, $parent_file;
|
||||
|
||||
// Catch plugins that include admin-header.php before admin.php completes.
|
||||
@@ -32,26 +33,20 @@ if ( empty( $current_screen ) )
|
||||
get_admin_page_title();
|
||||
$title = esc_html( strip_tags( $title ) );
|
||||
|
||||
if ( is_network_admin() ) {
|
||||
/* translators: Network admin screen title. 1: Network name */
|
||||
$admin_title = sprintf( __( 'Network Admin: %s' ), esc_html( get_network()->site_name ) );
|
||||
} elseif ( is_user_admin() ) {
|
||||
/* translators: User dashboard screen title. 1: Network name */
|
||||
$admin_title = sprintf( __( 'User Dashboard: %s' ), esc_html( get_network()->site_name ) );
|
||||
} else {
|
||||
if ( is_network_admin() )
|
||||
$admin_title = sprintf( __( 'Network Admin: %s' ), esc_html( get_current_site()->site_name ) );
|
||||
elseif ( is_user_admin() )
|
||||
$admin_title = sprintf( __( 'User Dashboard: %s' ), esc_html( get_current_site()->site_name ) );
|
||||
else
|
||||
$admin_title = get_bloginfo( 'name' );
|
||||
}
|
||||
|
||||
if ( $admin_title == $title ) {
|
||||
/* translators: Admin screen title. 1: Admin screen name */
|
||||
if ( $admin_title == $title )
|
||||
$admin_title = sprintf( __( '%1$s — WordPress' ), $title );
|
||||
} else {
|
||||
/* translators: Admin screen title. 1: Admin screen name, 2: Network or site name */
|
||||
else
|
||||
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, $admin_title );
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters the title tag content for an admin page.
|
||||
* Filter the title tag content for an admin page.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
@@ -101,7 +96,7 @@ do_action( 'admin_enqueue_scripts', $hook_suffix );
|
||||
*
|
||||
* @since 2.6.0
|
||||
*/
|
||||
do_action( "admin_print_styles-{$hook_suffix}" );
|
||||
do_action( "admin_print_styles-$hook_suffix" );
|
||||
|
||||
/**
|
||||
* Fires when styles are printed for all admin pages.
|
||||
@@ -115,7 +110,7 @@ do_action( 'admin_print_styles' );
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
do_action( "admin_print_scripts-{$hook_suffix}" );
|
||||
do_action( "admin_print_scripts-$hook_suffix" );
|
||||
|
||||
/**
|
||||
* Fires when scripts are printed for all admin pages.
|
||||
@@ -132,7 +127,7 @@ do_action( 'admin_print_scripts' );
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
do_action( "admin_head-{$hook_suffix}" );
|
||||
do_action( "admin_head-$hook_suffix" );
|
||||
|
||||
/**
|
||||
* Fires in head section for all admin pages.
|
||||
@@ -159,10 +154,10 @@ if ( $current_screen->post_type )
|
||||
if ( $current_screen->taxonomy )
|
||||
$admin_body_class .= ' taxonomy-' . $current_screen->taxonomy;
|
||||
|
||||
$admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', floatval( get_bloginfo( 'version' ) ) );
|
||||
$admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', get_bloginfo( 'version' ) ) );
|
||||
$admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', floatval( $wp_version ) );
|
||||
$admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', $wp_version ) );
|
||||
$admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
|
||||
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_user_locale() ) ) );
|
||||
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
|
||||
|
||||
if ( wp_is_mobile() )
|
||||
$admin_body_class .= ' mobile';
|
||||
@@ -179,7 +174,7 @@ $admin_body_class .= ' no-customize-support no-svg';
|
||||
</head>
|
||||
<?php
|
||||
/**
|
||||
* Filters the CSS classes for the body tag in the admin.
|
||||
* Filter the CSS classes for the body tag in the admin.
|
||||
*
|
||||
* This filter differs from the {@see 'post_class'} and {@see 'body_class'} filters
|
||||
* in two important ways:
|
||||
@@ -234,21 +229,21 @@ $current_screen->render_screen_meta();
|
||||
|
||||
if ( is_network_admin() ) {
|
||||
/**
|
||||
* Prints network admin screen notices.
|
||||
* Print network admin screen notices.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*/
|
||||
do_action( 'network_admin_notices' );
|
||||
} elseif ( is_user_admin() ) {
|
||||
/**
|
||||
* Prints user admin screen notices.
|
||||
* Print user admin screen notices.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*/
|
||||
do_action( 'user_admin_notices' );
|
||||
} else {
|
||||
/**
|
||||
* Prints admin screen notices.
|
||||
* Print admin screen notices.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*/
|
||||
@@ -256,7 +251,7 @@ if ( is_network_admin() ) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints generic admin screen notices.
|
||||
* Print generic admin screen notices.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*/
|
||||
|
||||
@@ -48,7 +48,7 @@ if ( get_option('db_upgraded') ) {
|
||||
exit;
|
||||
|
||||
/**
|
||||
* Filters whether to attempt to perform the multisite DB upgrade routine.
|
||||
* Filter whether to attempt to perform the multisite DB upgrade routine.
|
||||
*
|
||||
* In single site, the user would be redirected to wp-admin/upgrade.php.
|
||||
* In multisite, the DB upgrade routine is automatically fired, but only
|
||||
@@ -138,7 +138,21 @@ else
|
||||
require(ABSPATH . 'wp-admin/menu.php');
|
||||
|
||||
if ( current_user_can( 'manage_options' ) ) {
|
||||
wp_raise_memory_limit( 'admin' );
|
||||
/**
|
||||
* Filter the maximum memory limit available for administration screens.
|
||||
*
|
||||
* This only applies to administrators, who may require more memory for tasks like updates.
|
||||
* Memory limits when processing images (uploaded or edited by users of any role) are
|
||||
* handled separately.
|
||||
*
|
||||
* The WP_MAX_MEMORY_LIMIT constant specifically defines the maximum memory limit available
|
||||
* when in the administration back end. The default is 256M, or 256 megabytes of memory.
|
||||
*
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @param string 'WP_MAX_MEMORY_LIMIT' The maximum WordPress memory limit. Default 256M.
|
||||
*/
|
||||
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -147,7 +161,7 @@ if ( current_user_can( 'manage_options' ) ) {
|
||||
* Note, this does not just run on user-facing admin screens.
|
||||
* It runs on admin-ajax.php and admin-post.php as well.
|
||||
*
|
||||
* This is roughly analogous to the more general {@see 'init'} hook, which fires earlier.
|
||||
* This is roughly analogous to the more general 'init' hook, which fires earlier.
|
||||
*
|
||||
* @since 2.5.0
|
||||
*/
|
||||
@@ -161,7 +175,7 @@ if ( isset($plugin_page) ) {
|
||||
if ( ! $page_hook = get_plugin_page_hook($plugin_page, $the_parent) ) {
|
||||
$page_hook = get_plugin_page_hook($plugin_page, $plugin_page);
|
||||
|
||||
// Back-compat for plugins using add_management_page().
|
||||
// Backwards compatibility for plugins using add_management_page().
|
||||
if ( empty( $page_hook ) && 'edit.php' == $pagenow && '' != get_plugin_page_hook($plugin_page, 'tools.php') ) {
|
||||
// There could be plugin specific params on the URL, so we need the whole query string
|
||||
if ( !empty($_SERVER[ 'QUERY_STRING' ]) )
|
||||
@@ -209,7 +223,7 @@ if ( isset($plugin_page) ) {
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
do_action( "load-{$page_hook}" );
|
||||
do_action( 'load-' . $page_hook );
|
||||
if (! isset($_GET['noheader']))
|
||||
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
||||
|
||||
@@ -221,9 +235,8 @@ if ( isset($plugin_page) ) {
|
||||
*/
|
||||
do_action( $page_hook );
|
||||
} else {
|
||||
if ( validate_file( $plugin_page ) ) {
|
||||
wp_die( __( 'Invalid plugin page.' ) );
|
||||
}
|
||||
if ( validate_file($plugin_page) )
|
||||
wp_die(__('Invalid plugin page'));
|
||||
|
||||
if ( !( file_exists(WP_PLUGIN_DIR . "/$plugin_page") && is_file(WP_PLUGIN_DIR . "/$plugin_page") ) && !( file_exists(WPMU_PLUGIN_DIR . "/$plugin_page") && is_file(WPMU_PLUGIN_DIR . "/$plugin_page") ) )
|
||||
wp_die(sprintf(__('Cannot load %s.'), htmlentities($plugin_page)));
|
||||
@@ -240,7 +253,7 @@ if ( isset($plugin_page) ) {
|
||||
*
|
||||
* @since 1.5.0
|
||||
*/
|
||||
do_action( "load-{$plugin_page}" );
|
||||
do_action( 'load-' . $plugin_page );
|
||||
|
||||
if ( !isset($_GET['noheader']))
|
||||
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
||||
@@ -258,9 +271,8 @@ if ( isset($plugin_page) ) {
|
||||
|
||||
$importer = $_GET['import'];
|
||||
|
||||
if ( ! current_user_can( 'import' ) ) {
|
||||
wp_die( __( 'Sorry, you are not allowed to import content.' ) );
|
||||
}
|
||||
if ( ! current_user_can('import') )
|
||||
wp_die(__('You are not allowed to import.'));
|
||||
|
||||
if ( validate_file($importer) ) {
|
||||
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
||||
@@ -279,7 +291,7 @@ if ( isset($plugin_page) ) {
|
||||
*
|
||||
* @since 3.5.0
|
||||
*/
|
||||
do_action( "load-importer-{$importer}" );
|
||||
do_action( 'load-importer-' . $importer );
|
||||
|
||||
$parent_file = 'tools.php';
|
||||
$submenu_file = 'import.php';
|
||||
@@ -327,7 +339,7 @@ if ( isset($plugin_page) ) {
|
||||
*
|
||||
* @since 2.1.0
|
||||
*/
|
||||
do_action( "load-{$pagenow}" );
|
||||
do_action( 'load-' . $pagenow );
|
||||
|
||||
/*
|
||||
* The following hooks are fired to ensure backward compatibility.
|
||||
|
||||
@@ -45,16 +45,16 @@ if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action']
|
||||
}
|
||||
|
||||
if ( ! current_user_can( 'upload_files' ) ) {
|
||||
wp_die( __( 'Sorry, you are not allowed to upload files.' ) );
|
||||
wp_die( __( 'You do not have permission to upload files.' ) );
|
||||
}
|
||||
|
||||
// just fetch the detail form for that attachment
|
||||
if ( isset($_REQUEST['attachment_id']) && ($id = intval($_REQUEST['attachment_id'])) && $_REQUEST['fetch'] ) {
|
||||
$post = get_post( $id );
|
||||
if ( 'attachment' != $post->post_type )
|
||||
wp_die( __( 'Invalid post type.' ) );
|
||||
wp_die( __( 'Unknown post type.' ) );
|
||||
if ( ! current_user_can( 'edit_post', $id ) )
|
||||
wp_die( __( 'Sorry, you are not allowed to edit this item.' ) );
|
||||
wp_die( __( 'You are not allowed to edit this item.' ) );
|
||||
|
||||
switch ( $_REQUEST['fetch'] ) {
|
||||
case 3 :
|
||||
@@ -105,7 +105,7 @@ if ( $_REQUEST['short'] ) {
|
||||
$type = $_REQUEST['type'];
|
||||
|
||||
/**
|
||||
* Filters the returned ID of an uploaded attachment.
|
||||
* Filter the returned ID of an uploaded attachment.
|
||||
*
|
||||
* The dynamic portion of the hook name, `$type`, refers to the attachment type,
|
||||
* such as 'image', 'audio', 'video', 'file', etc.
|
||||
|
||||
@@ -48,8 +48,8 @@ case 'editcomment' :
|
||||
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments">Documentation on Comments</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="https://wordpress.org/support/">Support Forums</a>' ) . '</p>'
|
||||
'<p>' . __( '<a href="https://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
|
||||
);
|
||||
|
||||
wp_enqueue_script('comment');
|
||||
@@ -61,7 +61,7 @@ case 'editcomment' :
|
||||
comment_footer_die( __( 'Invalid comment ID.' ) . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'javascript:history.go(-1)') );
|
||||
|
||||
if ( !current_user_can( 'edit_comment', $comment_id ) )
|
||||
comment_footer_die( __('Sorry, you are not allowed to edit this comment.') );
|
||||
comment_footer_die( __('You are not allowed to edit this comment.') );
|
||||
|
||||
if ( 'trash' == $comment->comment_approved )
|
||||
comment_footer_die( __('This comment is in the Trash. Please move it out of the Trash if you want to edit it.') );
|
||||
@@ -197,7 +197,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
|
||||
<?php
|
||||
/* translators: 1: comment date, 2: comment time */
|
||||
$submitted = sprintf( __( '%1$s at %2$s' ),
|
||||
/* translators: comment date format. See https://secure.php.net/date */
|
||||
/* translators: comment date format. See http://php.net/date */
|
||||
get_comment_date( __( 'Y/m/d' ), $comment ),
|
||||
get_comment_date( __( 'g:i a' ), $comment )
|
||||
);
|
||||
@@ -213,7 +213,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
|
||||
<th scope="row"><?php /* translators: field name in comment form */ _ex('Comment', 'noun'); ?></th>
|
||||
<td class="comment-content">
|
||||
<?php comment_text( $comment ); ?>
|
||||
<p class="edit-comment"><a href="<?php echo admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ); ?>"><?php esc_html_e( 'Edit' ); ?></a></p>
|
||||
<p class="edit-comment"><a href="<?php echo admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ); ?>"><?php esc_attr_e( 'Edit' ); ?></a></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -222,7 +222,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
|
||||
|
||||
<p>
|
||||
<?php submit_button( $button, 'primary', 'submit', false ); ?>
|
||||
<a href="<?php echo admin_url('edit-comments.php'); ?>" class="button-cancel"><?php esc_html_e( 'Cancel' ); ?></a>
|
||||
<a href="<?php echo admin_url('edit-comments.php'); ?>" class="button-cancel"><?php esc_attr_e( 'Cancel' ); ?></a>
|
||||
</p>
|
||||
|
||||
<?php wp_nonce_field( $nonce_action ); ?>
|
||||
@@ -254,7 +254,7 @@ case 'unapprovecomment' :
|
||||
if ( !$comment = get_comment($comment_id) )
|
||||
comment_footer_die( __( 'Invalid comment ID.' ) . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'edit-comments.php') );
|
||||
if ( !current_user_can( 'edit_comment', $comment->comment_ID ) )
|
||||
comment_footer_die( __('Sorry, you are not allowed to edit comments on this post.') );
|
||||
comment_footer_die( __('You are not allowed to edit comments on this post.') );
|
||||
|
||||
if ( '' != wp_get_referer() && ! $noredir && false === strpos(wp_get_referer(), 'comment.php') )
|
||||
$redir = wp_get_referer();
|
||||
@@ -313,7 +313,7 @@ case 'editedcomment' :
|
||||
$location = ( empty( $_POST['referredby'] ) ? "edit-comments.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
|
||||
|
||||
/**
|
||||
* Filters the URI the user is redirected to after editing a comment in the admin.
|
||||
* Filter the URI the user is redirected to after editing a comment in the admin.
|
||||
*
|
||||
* @since 2.1.0
|
||||
*
|
||||
|
||||
@@ -12,7 +12,7 @@ require_once( dirname( __FILE__ ) . '/includes/credits.php' );
|
||||
|
||||
$title = __( 'Credits' );
|
||||
|
||||
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||||
list( $display_version ) = explode( '-', $wp_version );
|
||||
|
||||
include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
?>
|
||||
@@ -20,7 +20,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
|
||||
<h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
|
||||
|
||||
<p class="about-text"><?php printf( __( 'Thank you for updating to the latest version! WordPress %s adds more ways for you to express yourself and represent your brand.' ), $display_version ); ?></p>
|
||||
<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s streamlines your workflow, whether you’re writing or building your site.' ), $display_version ); ?></div>
|
||||
|
||||
<div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
|
||||
|
||||
@@ -42,7 +42,6 @@ if ( ! $credits ) {
|
||||
__( 'https://make.wordpress.org/' )
|
||||
);
|
||||
echo '</p>';
|
||||
echo '</div>';
|
||||
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
||||
exit;
|
||||
}
|
||||
|
||||
@@ -88,16 +88,10 @@
|
||||
/* 1.1 - Typography */
|
||||
|
||||
.about-wrap p {
|
||||
line-height: 1.5;
|
||||
line-height: 1.6em;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section p {
|
||||
max-width: 55em;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.about-wrap h1 {
|
||||
margin: 0.2em 0 0 200px;
|
||||
padding: 0;
|
||||
@@ -108,29 +102,30 @@
|
||||
}
|
||||
|
||||
.about-wrap h2 {
|
||||
margin: 40px 0 .6em;
|
||||
font-size: 2.7em;
|
||||
margin: 50px 0 1em;
|
||||
font-size: 1.8em;
|
||||
line-height: 1.3;
|
||||
font-weight: 300;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h2,
|
||||
.about-wrap h3 {
|
||||
margin: 1.25em 0 .6em;
|
||||
font-size: 1.4em;
|
||||
line-height: 1.5;
|
||||
font-size: 1.25em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h2 {
|
||||
margin-top: 40px;
|
||||
font-weight: 600;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.about-wrap h4 {
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h2 {
|
||||
font-size: 1.4em;
|
||||
font-weight: 600;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h3 {
|
||||
margin: 1.33em 0;
|
||||
font-size: 1em;
|
||||
@@ -141,13 +136,13 @@
|
||||
.about-wrap code,
|
||||
.about-wrap ol li p {
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.about-wrap .about-description,
|
||||
.about-wrap .about-text {
|
||||
margin-top: 1.4em;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 1.6em;
|
||||
font-size: 19px;
|
||||
}
|
||||
@@ -160,63 +155,47 @@
|
||||
|
||||
/* 1.2 - Structure */
|
||||
|
||||
.about-wrap [class$="-col"] {
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: flex;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.one-col {
|
||||
margin: 0 auto;
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
.about-wrap [class$="-col"] .col {
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
-webkit-box-flex: 1;
|
||||
-moz-box-flex: 1;
|
||||
flex: 1;
|
||||
.about-wrap [class$=col] .col {
|
||||
float: right;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.about-wrap .two-col .col {
|
||||
min-width: 47%;
|
||||
max-width: 47%;
|
||||
}
|
||||
|
||||
.about-wrap .three-col .col {
|
||||
-webkit-align-self: flex-start;
|
||||
-ms-flex-item-align: start;
|
||||
align-self: flex-start;
|
||||
min-width: 31%;
|
||||
max-width: 31%;
|
||||
margin-left: 4.799999999%;
|
||||
width: 47.6%;
|
||||
}
|
||||
|
||||
.about-wrap .two-col img {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.about-wrap .feature-video .mejs-controls {
|
||||
display: none !important;
|
||||
.about-wrap .feature-section.two-col .col {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
margin-top: 1em;
|
||||
margin-left: 4.799999999%;
|
||||
width: -webkit-calc( 47.6% - 4px );
|
||||
width: calc( 47.6% - 4px );
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.about-wrap .feature-video .mejs-overlay-loading span {
|
||||
background: transparent; /* Hide loading.gif */
|
||||
.about-wrap .three-col .col {
|
||||
margin-left: 4.999999999%;
|
||||
width: 29.95%;
|
||||
}
|
||||
|
||||
.about-wrap .two-col .col:nth-of-type(2n),
|
||||
.about-wrap .three-col .col:nth-of-type(3n) {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) {
|
||||
margin-top: 3em;
|
||||
}
|
||||
|
||||
/* 1.3 - Point Releases */
|
||||
@@ -240,6 +219,19 @@
|
||||
|
||||
/* 2.1 - Typography */
|
||||
|
||||
.about-wrap .headline-feature h2 {
|
||||
margin: 30px 0 30px;
|
||||
font-size: 2.2em;
|
||||
font-weight: 300;
|
||||
line-height: 1.3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-wrap .headline-feature h3 {
|
||||
margin-top: 0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.two-col h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -253,11 +245,6 @@
|
||||
margin-top: 0.6em;
|
||||
}
|
||||
|
||||
.about-wrap .lead-description {
|
||||
font-size: 1.5em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-wrap .two-col-text {
|
||||
-webkit-column-count: 2;
|
||||
-moz-column-count: 2;
|
||||
@@ -271,11 +258,6 @@
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.about-wrap .streamlined-updates p,
|
||||
.about-wrap .native-fonts p {
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
/* 2.2 - Structure */
|
||||
|
||||
.about-wrap .headline-feature.feature-video {
|
||||
@@ -305,18 +287,15 @@
|
||||
padding: 0 0 40px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.no-heading {
|
||||
padding-top: 35px;
|
||||
.about-wrap .headline-feature {
|
||||
margin: 0 auto;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section .media-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section img {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.about-wrap .embed-container {
|
||||
text-align: center;
|
||||
}
|
||||
@@ -346,7 +325,7 @@
|
||||
.about-wrap .return-to-dashboard {
|
||||
margin: 30px -5px 0 0;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.about-wrap .return-to-dashboard a {
|
||||
@@ -408,7 +387,7 @@
|
||||
.about-wrap .wp-person .web {
|
||||
margin: 6px 0 2px;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 2em;
|
||||
text-decoration: none;
|
||||
}
|
||||
@@ -433,11 +412,11 @@
|
||||
|
||||
.freedoms-php .about-wrap ol li {
|
||||
list-style-type: decimal;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.freedoms-php .about-wrap ol p {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
margin: 0.6em 0;
|
||||
}
|
||||
|
||||
@@ -452,11 +431,6 @@
|
||||
column-count: 1;
|
||||
}
|
||||
|
||||
.about-wrap .two-col .col,
|
||||
.about-wrap .three-col .col {
|
||||
min-width: 48% !important;
|
||||
}
|
||||
|
||||
.about-wrap .three-col img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
@@ -486,7 +460,8 @@
|
||||
|
||||
.about-wrap .two-col .col,
|
||||
.about-wrap .three-col .col {
|
||||
min-width: 100% !important;
|
||||
width: 100% !important;
|
||||
float: none !important;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood.three-col .col,
|
||||
@@ -496,13 +471,11 @@
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood:nth-of-type(2n),
|
||||
.about-wrap .under-the-hood:nth-of-type(3n) {
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) h3,
|
||||
.about-wrap .under-the-hood:nth-of-type(3n) h3 {
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) h4 {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/about-rtl.min.css
vendored
2
wp-admin/css/about-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -88,16 +88,10 @@
|
||||
/* 1.1 - Typography */
|
||||
|
||||
.about-wrap p {
|
||||
line-height: 1.5;
|
||||
line-height: 1.6em;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section p {
|
||||
max-width: 55em;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.about-wrap h1 {
|
||||
margin: 0.2em 200px 0 0;
|
||||
padding: 0;
|
||||
@@ -108,29 +102,30 @@
|
||||
}
|
||||
|
||||
.about-wrap h2 {
|
||||
margin: 40px 0 .6em;
|
||||
font-size: 2.7em;
|
||||
margin: 50px 0 1em;
|
||||
font-size: 1.8em;
|
||||
line-height: 1.3;
|
||||
font-weight: 300;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h2,
|
||||
.about-wrap h3 {
|
||||
margin: 1.25em 0 .6em;
|
||||
font-size: 1.4em;
|
||||
line-height: 1.5;
|
||||
font-size: 1.25em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h2 {
|
||||
margin-top: 40px;
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.about-wrap h4 {
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h2 {
|
||||
font-size: 1.4em;
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.about-wrap .changelog h3 {
|
||||
margin: 1.33em 0;
|
||||
font-size: 1em;
|
||||
@@ -141,13 +136,13 @@
|
||||
.about-wrap code,
|
||||
.about-wrap ol li p {
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.about-wrap .about-description,
|
||||
.about-wrap .about-text {
|
||||
margin-top: 1.4em;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 1.6em;
|
||||
font-size: 19px;
|
||||
}
|
||||
@@ -160,63 +155,47 @@
|
||||
|
||||
/* 1.2 - Structure */
|
||||
|
||||
.about-wrap [class$="-col"] {
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: flex;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-moz-box-pack: justify;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.one-col {
|
||||
margin: 0 auto;
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
.about-wrap [class$="-col"] .col {
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
-webkit-box-flex: 1;
|
||||
-moz-box-flex: 1;
|
||||
flex: 1;
|
||||
.about-wrap [class$=col] .col {
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.about-wrap .two-col .col {
|
||||
min-width: 47%;
|
||||
max-width: 47%;
|
||||
}
|
||||
|
||||
.about-wrap .three-col .col {
|
||||
-webkit-align-self: flex-start;
|
||||
-ms-flex-item-align: start;
|
||||
align-self: flex-start;
|
||||
min-width: 31%;
|
||||
max-width: 31%;
|
||||
margin-right: 4.799999999%;
|
||||
width: 47.6%;
|
||||
}
|
||||
|
||||
.about-wrap .two-col img {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.about-wrap .feature-video .mejs-controls {
|
||||
display: none !important;
|
||||
.about-wrap .feature-section.two-col .col {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
margin-top: 1em;
|
||||
margin-right: 4.799999999%;
|
||||
width: -webkit-calc( 47.6% - 4px );
|
||||
width: calc( 47.6% - 4px );
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.about-wrap .feature-video .mejs-overlay-loading span {
|
||||
background: transparent; /* Hide loading.gif */
|
||||
.about-wrap .three-col .col {
|
||||
margin-right: 4.999999999%;
|
||||
width: 29.95%;
|
||||
}
|
||||
|
||||
.about-wrap .two-col .col:nth-of-type(2n),
|
||||
.about-wrap .three-col .col:nth-of-type(3n) {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) {
|
||||
margin-top: 3em;
|
||||
}
|
||||
|
||||
/* 1.3 - Point Releases */
|
||||
@@ -240,6 +219,19 @@
|
||||
|
||||
/* 2.1 - Typography */
|
||||
|
||||
.about-wrap .headline-feature h2 {
|
||||
margin: 30px 0 30px;
|
||||
font-size: 2.2em;
|
||||
font-weight: 300;
|
||||
line-height: 1.3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-wrap .headline-feature h3 {
|
||||
margin-top: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.two-col h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -253,11 +245,6 @@
|
||||
margin-top: 0.6em;
|
||||
}
|
||||
|
||||
.about-wrap .lead-description {
|
||||
font-size: 1.5em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-wrap .two-col-text {
|
||||
-webkit-column-count: 2;
|
||||
-moz-column-count: 2;
|
||||
@@ -271,11 +258,6 @@
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.about-wrap .streamlined-updates p,
|
||||
.about-wrap .native-fonts p {
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
/* 2.2 - Structure */
|
||||
|
||||
.about-wrap .headline-feature.feature-video {
|
||||
@@ -305,18 +287,15 @@
|
||||
padding: 0 0 40px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.no-heading {
|
||||
padding-top: 35px;
|
||||
.about-wrap .headline-feature {
|
||||
margin: 0 auto;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section .media-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section img {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.about-wrap .embed-container {
|
||||
text-align: center;
|
||||
}
|
||||
@@ -346,7 +325,7 @@
|
||||
.about-wrap .return-to-dashboard {
|
||||
margin: 30px 0 0 -5px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.about-wrap .return-to-dashboard a {
|
||||
@@ -408,7 +387,7 @@
|
||||
.about-wrap .wp-person .web {
|
||||
margin: 6px 0 2px;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 2em;
|
||||
text-decoration: none;
|
||||
}
|
||||
@@ -433,11 +412,11 @@
|
||||
|
||||
.freedoms-php .about-wrap ol li {
|
||||
list-style-type: decimal;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.freedoms-php .about-wrap ol p {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
margin: 0.6em 0;
|
||||
}
|
||||
|
||||
@@ -452,11 +431,6 @@
|
||||
column-count: 1;
|
||||
}
|
||||
|
||||
.about-wrap .two-col .col,
|
||||
.about-wrap .three-col .col {
|
||||
min-width: 48% !important;
|
||||
}
|
||||
|
||||
.about-wrap .three-col img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
@@ -486,7 +460,8 @@
|
||||
|
||||
.about-wrap .two-col .col,
|
||||
.about-wrap .three-col .col {
|
||||
min-width: 100% !important;
|
||||
width: 100% !important;
|
||||
float: none !important;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood.three-col .col,
|
||||
@@ -496,13 +471,11 @@
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood:nth-of-type(2n),
|
||||
.about-wrap .under-the-hood:nth-of-type(3n) {
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) h3,
|
||||
.about-wrap .under-the-hood:nth-of-type(3n) h3 {
|
||||
.about-wrap .under-the-hood:nth-of-type(2n) h4 {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/about.min.css
vendored
2
wp-admin/css/about.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -97,7 +97,7 @@
|
||||
}
|
||||
|
||||
.icon16.icon-site:before {
|
||||
content: "\f541";
|
||||
content: "\f112";
|
||||
}
|
||||
|
||||
.icon16.icon-generic:before {
|
||||
@@ -264,7 +264,7 @@
|
||||
.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 {
|
||||
.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
|
||||
top: 0;
|
||||
right: 36px;
|
||||
}
|
||||
@@ -547,82 +547,79 @@ ul#adminmenu > li.current > a.current:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#collapse-button {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 34px;
|
||||
margin: 0;
|
||||
border: none;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
#collapse-menu {
|
||||
font-size: 13px;
|
||||
line-height: 34px;
|
||||
background: none;
|
||||
color: #aaa;
|
||||
cursor: pointer;
|
||||
outline: 0;
|
||||
margin-top: 10px;
|
||||
color: #a0a5aa;
|
||||
color: rgba(240,245,250,0.6);
|
||||
-webkit-transition: all .1s ease-in-out;
|
||||
transition: all .1s ease-in-out;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
#collapse-menu:hover,
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #00b9eb;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon,
|
||||
#collapse-button .collapse-button-label {
|
||||
/* absolutely positioned to avoid 1px shift in IE when button is pressed */
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
line-height: 34px;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon {
|
||||
width: 36px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-label {
|
||||
padding: 0 36px 0 0;
|
||||
}
|
||||
|
||||
.folded #collapse-button .collapse-button-label {
|
||||
.folded #collapse-menu span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon:after {
|
||||
#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;
|
||||
position: relative;
|
||||
top: 7px;
|
||||
text-align: center;
|
||||
line-height: 15px;
|
||||
right: -3px;
|
||||
top: -3px;
|
||||
color: #a0a5aa;
|
||||
color: rgba(240,245,250,0.6);
|
||||
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;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.folded #collapse-button .collapse-button-icon:after,
|
||||
.rtl #collapse-button .collapse-button-icon:after {
|
||||
.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 .collapse-button-icon:after {
|
||||
.rtl.folded #collapse-button div:after {
|
||||
-webkit-transform: none;
|
||||
-ms-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon:after,
|
||||
#collapse-button .collapse-button-label {
|
||||
-webkit-transition: all .1s ease-in-out;
|
||||
transition: all .1s ease-in-out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Toolbar menu toggle
|
||||
*/
|
||||
@@ -655,7 +652,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
.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 {
|
||||
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||
top: 0px;
|
||||
right: 36px;
|
||||
}
|
||||
@@ -734,18 +731,22 @@ li#wp-admin-bar-menu-toggle {
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.auto-fold #collapse-menu .collapse-button-label {
|
||||
.auto-fold #collapse-menu span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.auto-fold #collapse-button div {
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.auto-fold #collapse-button .collapse-button-icon:after {
|
||||
.auto-fold #collapse-button div:after {
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.rtl.auto-fold #collapse-button .collapse-button-icon:after {
|
||||
.rtl.auto-fold #collapse-button div:after {
|
||||
-webkit-transform: none;
|
||||
-ms-transform: none;
|
||||
transform: none;
|
||||
|
||||
2
wp-admin/css/admin-menu-rtl.min.css
vendored
2
wp-admin/css/admin-menu-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -97,7 +97,7 @@
|
||||
}
|
||||
|
||||
.icon16.icon-site:before {
|
||||
content: "\f541";
|
||||
content: "\f112";
|
||||
}
|
||||
|
||||
.icon16.icon-generic:before {
|
||||
@@ -264,7 +264,7 @@
|
||||
.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 {
|
||||
.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
|
||||
top: 0;
|
||||
left: 36px;
|
||||
}
|
||||
@@ -547,82 +547,79 @@ ul#adminmenu > li.current > a.current:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#collapse-button {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 34px;
|
||||
margin: 0;
|
||||
border: none;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
#collapse-menu {
|
||||
font-size: 13px;
|
||||
line-height: 34px;
|
||||
background: none;
|
||||
color: #aaa;
|
||||
cursor: pointer;
|
||||
outline: 0;
|
||||
margin-top: 10px;
|
||||
color: #a0a5aa;
|
||||
color: rgba(240,245,250,0.6);
|
||||
-webkit-transition: all .1s ease-in-out;
|
||||
transition: all .1s ease-in-out;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
#collapse-menu:hover,
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #00b9eb;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon,
|
||||
#collapse-button .collapse-button-label {
|
||||
/* absolutely positioned to avoid 1px shift in IE when button is pressed */
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
line-height: 34px;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon {
|
||||
width: 36px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-label {
|
||||
padding: 0 0 0 36px;
|
||||
}
|
||||
|
||||
.folded #collapse-button .collapse-button-label {
|
||||
.folded #collapse-menu span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon:after {
|
||||
#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;
|
||||
position: relative;
|
||||
top: 7px;
|
||||
text-align: center;
|
||||
line-height: 15px;
|
||||
left: -3px;
|
||||
top: -3px;
|
||||
color: #a0a5aa;
|
||||
color: rgba(240,245,250,0.6);
|
||||
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;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.folded #collapse-button .collapse-button-icon:after,
|
||||
.rtl #collapse-button .collapse-button-icon:after {
|
||||
.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 .collapse-button-icon:after {
|
||||
.rtl.folded #collapse-button div:after {
|
||||
-webkit-transform: none;
|
||||
-ms-transform: none;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
#collapse-button .collapse-button-icon:after,
|
||||
#collapse-button .collapse-button-label {
|
||||
-webkit-transition: all .1s ease-in-out;
|
||||
transition: all .1s ease-in-out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Toolbar menu toggle
|
||||
*/
|
||||
@@ -655,7 +652,7 @@ li#wp-admin-bar-menu-toggle {
|
||||
.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 {
|
||||
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||
top: 0px;
|
||||
left: 36px;
|
||||
}
|
||||
@@ -734,18 +731,22 @@ li#wp-admin-bar-menu-toggle {
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.auto-fold #collapse-menu .collapse-button-label {
|
||||
.auto-fold #collapse-menu span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.auto-fold #collapse-button div {
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
.auto-fold #collapse-button .collapse-button-icon:after {
|
||||
.auto-fold #collapse-button div:after {
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.rtl.auto-fold #collapse-button .collapse-button-icon:after {
|
||||
.rtl.auto-fold #collapse-button div:after {
|
||||
-webkit-transform: none;
|
||||
-ms-transform: none;
|
||||
transform: none;
|
||||
|
||||
2
wp-admin/css/admin-menu.min.css
vendored
2
wp-admin/css/admin-menu.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -124,20 +124,3 @@
|
||||
border-color: #c00;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.iris-picker .ui-square-handle:focus,
|
||||
.iris-picker .iris-strip .ui-slider-handle:focus {
|
||||
-webkit-box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-picker-container input[type="text"].wp-color-picker {
|
||||
margin-left: 6px;
|
||||
padding: 3px 5px;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/color-picker-rtl.min.css
vendored
2
wp-admin/css/color-picker-rtl.min.css
vendored
@@ -1 +1 @@
|
||||
.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 #ccc;box-shadow:0 1px 0 #ccc;top:0}.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}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-right:1px solid #999}.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:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.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:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:16px;margin:0}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{margin-left:6px;padding:3px 5px}}
|
||||
.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 #ccc;box-shadow:0 1px 0 #ccc;top:0}.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}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-right:1px solid #999}.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:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.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:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:16px;margin:0}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}
|
||||
@@ -124,20 +124,3 @@
|
||||
border-color: #c00;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.iris-picker .ui-square-handle:focus,
|
||||
.iris-picker .iris-strip .ui-slider-handle:focus {
|
||||
-webkit-box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
box-shadow:
|
||||
0 0 0 1px #5b9dd9,
|
||||
0 0 2px 1px rgba(30, 140, 190, .8);
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-picker-container input[type="text"].wp-color-picker {
|
||||
margin-right: 6px;
|
||||
padding: 3px 5px;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/color-picker.min.css
vendored
2
wp-admin/css/color-picker.min.css
vendored
@@ -1 +1 @@
|
||||
.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 #ccc;box-shadow:0 1px 0 #ccc;top:0}.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}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-left:1px solid #999}.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:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.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:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:16px;margin:0}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{margin-right:6px;padding:3px 5px}}
|
||||
.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 #ccc;box-shadow:0 1px 0 #ccc;top:0}.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}.wp-color-result:focus,.wp-color-result:hover{background:#fafafa;border-color:#999;color:#23282d}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#23282d;border-color:#a0a5aa;border-left:1px solid #999}.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:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.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:#ddd;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;line-height:16px;margin:0}.wp-color-picker::-webkit-input-placeholder{color:#72777c}.wp-color-picker::-moz-placeholder{color:#72777c;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#72777c}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}
|
||||
@@ -3,7 +3,7 @@
|
||||
@import 'mixins';
|
||||
|
||||
|
||||
body {
|
||||
html {
|
||||
background: $body-background;
|
||||
}
|
||||
|
||||
@@ -227,15 +227,23 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: $menu-collapse-text;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: $menu-submenu-focus-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 {
|
||||
@@ -316,7 +324,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -408,7 +415,12 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px $highlight-color;
|
||||
-webkit-box-shadow:
|
||||
0px 0px 0px 1px #fff,
|
||||
0px 0px 0px 3px $highlight-color;
|
||||
box-shadow:
|
||||
0px 0px 0px 1px #fff,
|
||||
0px 0px 0px 3px $highlight-color;
|
||||
}
|
||||
|
||||
|
||||
@@ -462,6 +474,17 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: $menu-highlight-text;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: $menu-highlight-background;
|
||||
color: $menu-highlight-text;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: $highlight-color;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
|
||||
div#wp-responsive-toggle a:before {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
@mixin button( $button-color, $text-color: #fff ) {
|
||||
@mixin button( $button-color, $text-color: white ) {
|
||||
background: $button-color;
|
||||
border-color: darken( $button-color, 10% ) darken( $button-color, 15% ) darken( $button-color, 15% );
|
||||
color: $text-color;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #e1a948;
|
||||
border-color: #d39323 #bd831f #bd831f;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #bd831f;
|
||||
box-shadow: 0 1px 0 #bd831f;
|
||||
text-shadow: 0 -1px 1px #bd831f, -1px 0 1px #bd831f, 0 1px 1px #bd831f, 1px 0 1px #bd831f;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e3af55;
|
||||
border-color: #bd831f;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #bd831f;
|
||||
box-shadow: 0 1px 0 #bd831f;
|
||||
}
|
||||
@@ -259,12 +259,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #e5f8ff;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #e5f8ff;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #096484;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #096484;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #096484;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #096484;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #e5f8ff;
|
||||
|
||||
2
wp-admin/css/colors/blue/colors-rtl.min.css
vendored
2
wp-admin/css/colors/blue/colors-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #e1a948;
|
||||
border-color: #d39323 #bd831f #bd831f;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #bd831f;
|
||||
box-shadow: 0 1px 0 #bd831f;
|
||||
text-shadow: 0 -1px 1px #bd831f, 1px 0 1px #bd831f, 0 1px 1px #bd831f, -1px 0 1px #bd831f;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e3af55;
|
||||
border-color: #bd831f;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #bd831f;
|
||||
box-shadow: 0 1px 0 #bd831f;
|
||||
}
|
||||
@@ -259,12 +259,19 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #e5f8ff;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #e5f8ff;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #096484;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #096484;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #096484;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #096484;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #e5f8ff;
|
||||
|
||||
2
wp-admin/css/colors/blue/colors.min.css
vendored
2
wp-admin/css/colors/blue/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #c7a589;
|
||||
border-color: #b78b66 #ae7d55 #ae7d55;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ae7d55;
|
||||
box-shadow: 0 1px 0 #ae7d55;
|
||||
text-shadow: 0 -1px 1px #ae7d55, -1px 0 1px #ae7d55, 0 1px 1px #ae7d55, 1px 0 1px #ae7d55;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #ccad93;
|
||||
border-color: #ae7d55;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ae7d55;
|
||||
box-shadow: 0 1px 0 #ae7d55;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f3f2f1;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #c7a589;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f3f2f1;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #c7a589;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #c7a589;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #c7a589;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #c7a589;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f3f2f1;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #c7a589;
|
||||
border-color: #b78b66 #ae7d55 #ae7d55;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ae7d55;
|
||||
box-shadow: 0 1px 0 #ae7d55;
|
||||
text-shadow: 0 -1px 1px #ae7d55, 1px 0 1px #ae7d55, 0 1px 1px #ae7d55, -1px 0 1px #ae7d55;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #ccad93;
|
||||
border-color: #ae7d55;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ae7d55;
|
||||
box-shadow: 0 1px 0 #ae7d55;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f3f2f1;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #c7a589;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f3f2f1;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #c7a589;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #c7a589;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #c7a589;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #c7a589;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f3f2f1;
|
||||
|
||||
2
wp-admin/css/colors/coffee/colors.min.css
vendored
2
wp-admin/css/colors/coffee/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #a3b745;
|
||||
border-color: #829237 #727f30 #727f30;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #727f30;
|
||||
box-shadow: 0 1px 0 #727f30;
|
||||
text-shadow: 0 -1px 1px #727f30, -1px 0 1px #727f30, 0 1px 1px #727f30, 1px 0 1px #727f30;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a9bd4f;
|
||||
border-color: #727f30;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #727f30;
|
||||
box-shadow: 0 1px 0 #727f30;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #ece6f6;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #a3b745;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #ece6f6;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #a3b745;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #a3b745;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #a3b745;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #a3b745;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #ece6f6;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #a3b745;
|
||||
border-color: #829237 #727f30 #727f30;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #727f30;
|
||||
box-shadow: 0 1px 0 #727f30;
|
||||
text-shadow: 0 -1px 1px #727f30, 1px 0 1px #727f30, 0 1px 1px #727f30, -1px 0 1px #727f30;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a9bd4f;
|
||||
border-color: #727f30;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #727f30;
|
||||
box-shadow: 0 1px 0 #727f30;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #ece6f6;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #a3b745;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #ece6f6;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #a3b745;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #a3b745;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #a3b745;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #a3b745;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #ece6f6;
|
||||
|
||||
2
wp-admin/css/colors/ectoplasm/colors.min.css
vendored
2
wp-admin/css/colors/ectoplasm/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #04a4cc;
|
||||
border-color: #037c9a #036881 #036881;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #036881;
|
||||
box-shadow: 0 1px 0 #036881;
|
||||
text-shadow: 0 -1px 1px #036881, -1px 0 1px #036881, 0 1px 1px #036881, 1px 0 1px #036881;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #04b0db;
|
||||
border-color: #036881;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #036881;
|
||||
box-shadow: 0 1px 0 #036881;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #04a4cc;
|
||||
#collapse-menu:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #04a4cc;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #04a4cc;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #888;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #04a4cc;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #999;
|
||||
|
||||
2
wp-admin/css/colors/light/colors-rtl.min.css
vendored
2
wp-admin/css/colors/light/colors-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #04a4cc;
|
||||
border-color: #037c9a #036881 #036881;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #036881;
|
||||
box-shadow: 0 1px 0 #036881;
|
||||
text-shadow: 0 -1px 1px #036881, 1px 0 1px #036881, 0 1px 1px #036881, -1px 0 1px #036881;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #04b0db;
|
||||
border-color: #036881;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #036881;
|
||||
box-shadow: 0 1px 0 #036881;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #04a4cc;
|
||||
#collapse-menu:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #04a4cc;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #04a4cc;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #888;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #04a4cc;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #999;
|
||||
|
||||
2
wp-admin/css/colors/light/colors.min.css
vendored
2
wp-admin/css/colors/light/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #e14d43;
|
||||
border-color: #d02c21 #ba281e #ba281e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ba281e;
|
||||
box-shadow: 0 1px 0 #ba281e;
|
||||
text-shadow: 0 -1px 1px #ba281e, -1px 0 1px #ba281e, 0 1px 1px #ba281e, 1px 0 1px #ba281e;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e35950;
|
||||
border-color: #ba281e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ba281e;
|
||||
box-shadow: 0 1px 0 #ba281e;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f1f2f3;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #e14d43;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f1f2f3;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #e14d43;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #e14d43;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #e14d43;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #e14d43;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f1f2f3;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #e14d43;
|
||||
border-color: #d02c21 #ba281e #ba281e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ba281e;
|
||||
box-shadow: 0 1px 0 #ba281e;
|
||||
text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px #ba281e;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #e35950;
|
||||
border-color: #ba281e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ba281e;
|
||||
box-shadow: 0 1px 0 #ba281e;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f1f2f3;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #e14d43;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f1f2f3;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #e14d43;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #e14d43;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #e14d43;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #e14d43;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f1f2f3;
|
||||
|
||||
2
wp-admin/css/colors/midnight/colors.min.css
vendored
2
wp-admin/css/colors/midnight/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #9ebaa0;
|
||||
border-color: #80a583 #719a74 #719a74;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #719a74;
|
||||
box-shadow: 0 1px 0 #719a74;
|
||||
text-shadow: 0 -1px 1px #719a74, -1px 0 1px #719a74, 0 1px 1px #719a74, 1px 0 1px #719a74;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a7c0a9;
|
||||
border-color: #719a74;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #719a74;
|
||||
box-shadow: 0 1px 0 #719a74;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f2fcff;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #9ebaa0;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f2fcff;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #9ebaa0;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #9ebaa0;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #9ebaa0;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #9ebaa0;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f2fcff;
|
||||
|
||||
2
wp-admin/css/colors/ocean/colors-rtl.min.css
vendored
2
wp-admin/css/colors/ocean/colors-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #9ebaa0;
|
||||
border-color: #80a583 #719a74 #719a74;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #719a74;
|
||||
box-shadow: 0 1px 0 #719a74;
|
||||
text-shadow: 0 -1px 1px #719a74, 1px 0 1px #719a74, 0 1px 1px #719a74, -1px 0 1px #719a74;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #a7c0a9;
|
||||
border-color: #719a74;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #719a74;
|
||||
box-shadow: 0 1px 0 #719a74;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f2fcff;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #9ebaa0;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f2fcff;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #9ebaa0;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #9ebaa0;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #9ebaa0;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #9ebaa0;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f2fcff;
|
||||
|
||||
2
wp-admin/css/colors/ocean/colors.min.css
vendored
2
wp-admin/css/colors/ocean/colors.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #dd823b;
|
||||
border-color: #c36922 #ad5d1e #ad5d1e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ad5d1e;
|
||||
box-shadow: 0 1px 0 #ad5d1e;
|
||||
text-shadow: 0 -1px 1px #ad5d1e, -1px 0 1px #ad5d1e, 0 1px 1px #ad5d1e, 1px 0 1px #ad5d1e;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #df8a48;
|
||||
border-color: #ad5d1e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ad5d1e;
|
||||
box-shadow: 0 1px 0 #ad5d1e;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f3f1f1;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #f7e3d3;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f3f1f1;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #dd823b;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #dd823b;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #dd823b;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #dd823b;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f3f1f1;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* Button mixin- creates 3d-ish button effect with correct
|
||||
* highlights/shadows, based on a base color.
|
||||
*/
|
||||
body {
|
||||
html {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary {
|
||||
background: #dd823b;
|
||||
border-color: #c36922 #ad5d1e #ad5d1e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ad5d1e;
|
||||
box-shadow: 0 1px 0 #ad5d1e;
|
||||
text-shadow: 0 -1px 1px #ad5d1e, 1px 0 1px #ad5d1e, 0 1px 1px #ad5d1e, -1px 0 1px #ad5d1e;
|
||||
@@ -49,7 +49,7 @@ input[type=radio]:checked:before {
|
||||
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||
background: #df8a48;
|
||||
border-color: #ad5d1e;
|
||||
color: #fff;
|
||||
color: white;
|
||||
-webkit-box-shadow: 0 1px 0 #ad5d1e;
|
||||
box-shadow: 0 1px 0 #ad5d1e;
|
||||
}
|
||||
@@ -259,13 +259,20 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
/* Admin Menu: collapse button */
|
||||
#collapse-button {
|
||||
#collapse-menu {
|
||||
color: #f3f1f1;
|
||||
}
|
||||
|
||||
#collapse-button:hover,
|
||||
#collapse-button:focus {
|
||||
color: #f7e3d3;
|
||||
#collapse-menu:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
color: #f3f1f1;
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button div:after {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Admin Bar */
|
||||
@@ -345,7 +352,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li a:focus .ab-icon:before,
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover #adminbarsearch:before,
|
||||
@@ -430,8 +436,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
}
|
||||
|
||||
.media-selection .attachment.selection.details .thumbnail {
|
||||
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b;
|
||||
-webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #dd823b;
|
||||
box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #dd823b;
|
||||
}
|
||||
|
||||
/* Themes */
|
||||
@@ -482,6 +488,16 @@ body.more-filters-opened .more-filters:focus:before {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Customize */
|
||||
#customize-theme-controls .widget-area-select .selected {
|
||||
background-color: #dd823b;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#customize-footer-actions .devices button:focus {
|
||||
border-bottom-color: #dd823b;
|
||||
}
|
||||
|
||||
/* Responsive Component */
|
||||
div#wp-responsive-toggle a:before {
|
||||
color: #f3f1f1;
|
||||
|
||||
2
wp-admin/css/colors/sunrise/colors.min.css
vendored
2
wp-admin/css/colors/sunrise/colors.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
4
wp-admin/css/common-rtl.min.css
vendored
4
wp-admin/css/common-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
4
wp-admin/css/common.min.css
vendored
4
wp-admin/css/common.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
2
wp-admin/css/customize-controls-rtl.min.css
vendored
2
wp-admin/css/customize-controls-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
2
wp-admin/css/customize-controls.min.css
vendored
2
wp-admin/css/customize-controls.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,12 +1,8 @@
|
||||
#customize-theme-controls #accordion-section-menu_locations {
|
||||
#accordion-section-menu_locations {
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#customize-theme-controls #accordion-section-menu_locations > .accordion-section-title {
|
||||
border-bottom-color: #ddd;
|
||||
}
|
||||
|
||||
.menu-in-location,
|
||||
.menu-in-locations {
|
||||
display: block;
|
||||
@@ -20,13 +16,6 @@
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* The `edit-menu` button uses also the `button-link` class. */
|
||||
.customize-control-nav_menu_location .edit-menu {
|
||||
margin-right: 6px;
|
||||
vertical-align: middle;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-bar .menu-item-handle,
|
||||
.wp-customizer .menu-item-settings,
|
||||
.wp-customizer .menu-item-settings .description-thin {
|
||||
@@ -54,18 +43,9 @@
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-handle:hover {
|
||||
z-index: 8;
|
||||
}
|
||||
|
||||
.customize-control-nav_menu_item.has-notifications .menu-item-handle {
|
||||
border-right: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-settings {
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 8;
|
||||
padding: 10px;
|
||||
background: #eee;
|
||||
border: 1px solid #999;
|
||||
@@ -150,10 +130,9 @@
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before {
|
||||
.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:after {
|
||||
content: "\f142";
|
||||
}
|
||||
|
||||
@@ -271,18 +250,17 @@
|
||||
display: inline-block;
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
text-indent: -1px; /* account for the dashicon alignment */
|
||||
}
|
||||
|
||||
.rtl .wp-customizer .toggle-indicator {
|
||||
text-indent: 1px; /* account for the dashicon alignment */
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item .item-edit .toggle-indicator:before,
|
||||
#available-menu-items .accordion-section-title .toggle-indicator:before {
|
||||
.wp-customizer .toggle-indicator:after {
|
||||
content: "\f140";
|
||||
display: block;
|
||||
padding: 1px 0px 1px 2px;
|
||||
speak: none;
|
||||
vertical-align: top;
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
color: #72777c;
|
||||
@@ -292,19 +270,19 @@
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.control-section-nav_menu .field-link-target,
|
||||
.control-section-nav_menu .field-title-attribute,
|
||||
.control-section-nav_menu .field-css-classes,
|
||||
.control-section-nav_menu .field-xfn,
|
||||
.control-section-nav_menu .field-description {
|
||||
#accordion-panel-nav_menus .field-link-target,
|
||||
#accordion-panel-nav_menus .field-title-attribute,
|
||||
#accordion-panel-nav_menus .field-css-classes,
|
||||
#accordion-panel-nav_menus .field-xfn,
|
||||
#accordion-panel-nav_menus .field-description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.field-link-target-active .field-link-target,
|
||||
.control-section-nav_menu.field-title-attribute-active .field-title-attribute,
|
||||
.control-section-nav_menu.field-css-classes-active .field-css-classes,
|
||||
.control-section-nav_menu.field-xfn-active .field-xfn,
|
||||
.control-section-nav_menu.field-description-active .field-description {
|
||||
#accordion-panel-nav_menus.field-link-target-active .field-link-target,
|
||||
#accordion-panel-nav_menus.field-title-attribute-active .field-title-attribute,
|
||||
#accordion-panel-nav_menus.field-css-classes-active .field-css-classes,
|
||||
#accordion-panel-nav_menus.field-xfn-active .field-xfn,
|
||||
#accordion-panel-nav_menus.field-description-active .field-description {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@@ -377,15 +355,15 @@
|
||||
.reordering .menu-item-depth-10 > .menu-item-bar { margin-left: 150px; }
|
||||
.reordering .menu-item-depth-11 > .menu-item-bar { margin-left: 165px; }
|
||||
|
||||
.control-section-nav_menu.menu .menu-item-edit-active {
|
||||
.control-section-nav_menu .menu .menu-item-edit-active {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar {
|
||||
.control-section-nav_menu .menu .menu-item-edit-active .menu-item-bar {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.menu .sortable-placeholder {
|
||||
.control-section-nav_menu .menu .sortable-placeholder {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1px;
|
||||
max-width: -webkit-calc(100% - 2px);
|
||||
@@ -399,7 +377,7 @@
|
||||
float: none;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar {
|
||||
.control-section-nav_menu .menu ul.menu-item-transport .menu-item-bar {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@@ -478,11 +456,6 @@
|
||||
background: #fff;
|
||||
-webkit-transition: background-color 0.15s;
|
||||
transition: background-color 0.15s;
|
||||
/* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */
|
||||
-webkit-user-select: auto;
|
||||
-moz-user-select: auto;
|
||||
-ms-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
|
||||
#available-menu-items .open .accordion-section-title,
|
||||
@@ -495,18 +468,18 @@
|
||||
content: none !important;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-title:hover .toggle-indicator:before,
|
||||
#available-menu-items .button-link:hover .toggle-indicator:before,
|
||||
#available-menu-items .button-link:focus .toggle-indicator:before {
|
||||
#available-menu-items .accordion-section-title:hover .toggle-indicator:after,
|
||||
#available-menu-items .button-link:hover .toggle-indicator:after,
|
||||
#available-menu-items .button-link:focus .toggle-indicator:after {
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
#available-menu-items .open .accordion-section-title .toggle-indicator:before {
|
||||
#available-menu-items .open .accordion-section-title .toggle-indicator:after {
|
||||
content: "\f142";
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
#available-menu-items .available-menu-items-list {
|
||||
#available-menu-items .accordion-section-content {
|
||||
overflow-y: auto;
|
||||
max-height: 200px; /* This gets set in JS to fit the screen size, and based on # of sections. */
|
||||
background: transparent;
|
||||
@@ -523,7 +496,6 @@
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-title .no-items,
|
||||
@@ -539,29 +511,14 @@
|
||||
#available-menu-items .cannot-expand .accordion-section-title .no-items {
|
||||
float: left;
|
||||
color: #555d66;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content {
|
||||
max-height: 290px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content .available-menu-items-list {
|
||||
margin: 0 0 45px 0;
|
||||
padding: 1px 15px 15px 15px;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#new-custom-menu-item .accordion-section-content {
|
||||
padding: 0 15px 15px 15px;
|
||||
margin: 0;
|
||||
max-height: 290px;
|
||||
}
|
||||
|
||||
#available-menu-items .menu-item-tpl {
|
||||
@@ -571,9 +528,7 @@
|
||||
#custom-menu-item-name.invalid,
|
||||
#custom-menu-item-url.invalid,
|
||||
.menu-name-field.invalid,
|
||||
.menu-name-field.invalid:focus,
|
||||
#available-menu-items .new-content-item .create-item-input.invalid,
|
||||
#available-menu-items .new-content-item .create-item-input.invalid:focus {
|
||||
.menu-name-field.invalid:focus {
|
||||
border: 1px solid #f00;
|
||||
}
|
||||
|
||||
@@ -615,7 +570,6 @@
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#available-menu-items .menu-item-handle .item-add:focus {
|
||||
@@ -651,17 +605,49 @@
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
cursor: pointer;
|
||||
color: #a00;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results,
|
||||
#available-menu-items-search.loading .clear-results.is-visible {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results.is-visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results:before {
|
||||
content: "\f335";
|
||||
font: normal 20px/1 dashicons;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results:hover,
|
||||
#available-menu-items-search .clear-results:focus {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
#available-menu-items-search .spinner {
|
||||
position: absolute;
|
||||
top: 20px; /* 13 container padding +1 input margin +6 ( ( 32 input height - 20 spinner height ) / 2 ) */
|
||||
left: 21px;
|
||||
top: 20px;
|
||||
margin: 0 !important;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
/* search results list */
|
||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
right: 1px;
|
||||
top: 60px; /* below title div / search input */
|
||||
bottom: 0px; /* 100% height that still triggers lazy load */
|
||||
max-height: none;
|
||||
@@ -672,11 +658,6 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#available-menu-items-search .nothing-found {
|
||||
/* Compensate the 1px top padding of the container. */
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
#available-menu-items-search .accordion-section-title:after {
|
||||
display: none;
|
||||
}
|
||||
@@ -712,10 +693,6 @@ body.adding-menu-items #customize-preview {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
body.adding-menu-items #customize-preview iframe {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.menu-item-handle .spinner {
|
||||
display: none;
|
||||
float: right;
|
||||
@@ -750,14 +727,9 @@ body.adding-menu-items #customize-preview iframe {
|
||||
|
||||
/* Add/delete Menus */
|
||||
|
||||
#customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title {
|
||||
border-bottom-color: #ddd;
|
||||
}
|
||||
|
||||
/* @todo update selector */
|
||||
#accordion-section-add_menu {
|
||||
margin: 15px 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.new-menu-section-content {
|
||||
@@ -799,6 +771,18 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.menu-delete {
|
||||
color: #a00;
|
||||
cursor: pointer;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.menu-delete:hover,
|
||||
.menu-delete:focus {
|
||||
color: #f00;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu-item-handle {
|
||||
margin-top: -1px;
|
||||
}
|
||||
@@ -838,7 +822,8 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||
.wp-customizer .menu-item .submitbox .submitdelete:focus,
|
||||
.customize-screen-options-toggle:focus:before,
|
||||
#customize-controls .customize-info .customize-help-toggle:focus:before,
|
||||
.wp-customizer button:focus .toggle-indicator:before,
|
||||
.wp-customizer button:focus .toggle-indicator:after,
|
||||
#available-menu-items-search .clear-results:focus,
|
||||
.menu-delete:focus,
|
||||
.menu-item-bar .item-delete:focus:before,
|
||||
#available-menu-items .item-add:focus:before {
|
||||
@@ -859,6 +844,6 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||
|
||||
@media screen and ( max-width: 640px ) {
|
||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||
top: 130px;
|
||||
top: 133px;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/customize-nav-menus-rtl.min.css
vendored
2
wp-admin/css/customize-nav-menus-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,12 +1,8 @@
|
||||
#customize-theme-controls #accordion-section-menu_locations {
|
||||
#accordion-section-menu_locations {
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#customize-theme-controls #accordion-section-menu_locations > .accordion-section-title {
|
||||
border-bottom-color: #ddd;
|
||||
}
|
||||
|
||||
.menu-in-location,
|
||||
.menu-in-locations {
|
||||
display: block;
|
||||
@@ -20,13 +16,6 @@
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* The `edit-menu` button uses also the `button-link` class. */
|
||||
.customize-control-nav_menu_location .edit-menu {
|
||||
margin-left: 6px;
|
||||
vertical-align: middle;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-bar .menu-item-handle,
|
||||
.wp-customizer .menu-item-settings,
|
||||
.wp-customizer .menu-item-settings .description-thin {
|
||||
@@ -54,18 +43,9 @@
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-handle:hover {
|
||||
z-index: 8;
|
||||
}
|
||||
|
||||
.customize-control-nav_menu_item.has-notifications .menu-item-handle {
|
||||
border-left: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item-settings {
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
z-index: 8;
|
||||
padding: 10px;
|
||||
background: #eee;
|
||||
border: 1px solid #999;
|
||||
@@ -150,10 +130,9 @@
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before {
|
||||
.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:after {
|
||||
content: "\f142";
|
||||
}
|
||||
|
||||
@@ -271,18 +250,17 @@
|
||||
display: inline-block;
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
text-indent: -1px; /* account for the dashicon alignment */
|
||||
}
|
||||
|
||||
.rtl .wp-customizer .toggle-indicator {
|
||||
text-indent: 1px; /* account for the dashicon alignment */
|
||||
}
|
||||
|
||||
.wp-customizer .menu-item .item-edit .toggle-indicator:before,
|
||||
#available-menu-items .accordion-section-title .toggle-indicator:before {
|
||||
.wp-customizer .toggle-indicator:after {
|
||||
content: "\f140";
|
||||
display: block;
|
||||
padding: 1px 2px 1px 0px;
|
||||
speak: none;
|
||||
vertical-align: top;
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
color: #72777c;
|
||||
@@ -292,19 +270,19 @@
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.control-section-nav_menu .field-link-target,
|
||||
.control-section-nav_menu .field-title-attribute,
|
||||
.control-section-nav_menu .field-css-classes,
|
||||
.control-section-nav_menu .field-xfn,
|
||||
.control-section-nav_menu .field-description {
|
||||
#accordion-panel-nav_menus .field-link-target,
|
||||
#accordion-panel-nav_menus .field-title-attribute,
|
||||
#accordion-panel-nav_menus .field-css-classes,
|
||||
#accordion-panel-nav_menus .field-xfn,
|
||||
#accordion-panel-nav_menus .field-description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.field-link-target-active .field-link-target,
|
||||
.control-section-nav_menu.field-title-attribute-active .field-title-attribute,
|
||||
.control-section-nav_menu.field-css-classes-active .field-css-classes,
|
||||
.control-section-nav_menu.field-xfn-active .field-xfn,
|
||||
.control-section-nav_menu.field-description-active .field-description {
|
||||
#accordion-panel-nav_menus.field-link-target-active .field-link-target,
|
||||
#accordion-panel-nav_menus.field-title-attribute-active .field-title-attribute,
|
||||
#accordion-panel-nav_menus.field-css-classes-active .field-css-classes,
|
||||
#accordion-panel-nav_menus.field-xfn-active .field-xfn,
|
||||
#accordion-panel-nav_menus.field-description-active .field-description {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@@ -377,15 +355,15 @@
|
||||
.reordering .menu-item-depth-10 > .menu-item-bar { margin-right: 150px; }
|
||||
.reordering .menu-item-depth-11 > .menu-item-bar { margin-right: 165px; }
|
||||
|
||||
.control-section-nav_menu.menu .menu-item-edit-active {
|
||||
.control-section-nav_menu .menu .menu-item-edit-active {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar {
|
||||
.control-section-nav_menu .menu .menu-item-edit-active .menu-item-bar {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.menu .sortable-placeholder {
|
||||
.control-section-nav_menu .menu .sortable-placeholder {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1px;
|
||||
max-width: -webkit-calc(100% - 2px);
|
||||
@@ -399,7 +377,7 @@
|
||||
float: none;
|
||||
}
|
||||
|
||||
.control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar {
|
||||
.control-section-nav_menu .menu ul.menu-item-transport .menu-item-bar {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@@ -478,11 +456,6 @@
|
||||
background: #fff;
|
||||
-webkit-transition: background-color 0.15s;
|
||||
transition: background-color 0.15s;
|
||||
/* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */
|
||||
-webkit-user-select: auto;
|
||||
-moz-user-select: auto;
|
||||
-ms-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
|
||||
#available-menu-items .open .accordion-section-title,
|
||||
@@ -495,18 +468,18 @@
|
||||
content: none !important;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-title:hover .toggle-indicator:before,
|
||||
#available-menu-items .button-link:hover .toggle-indicator:before,
|
||||
#available-menu-items .button-link:focus .toggle-indicator:before {
|
||||
#available-menu-items .accordion-section-title:hover .toggle-indicator:after,
|
||||
#available-menu-items .button-link:hover .toggle-indicator:after,
|
||||
#available-menu-items .button-link:focus .toggle-indicator:after {
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
#available-menu-items .open .accordion-section-title .toggle-indicator:before {
|
||||
#available-menu-items .open .accordion-section-title .toggle-indicator:after {
|
||||
content: "\f142";
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
#available-menu-items .available-menu-items-list {
|
||||
#available-menu-items .accordion-section-content {
|
||||
overflow-y: auto;
|
||||
max-height: 200px; /* This gets set in JS to fit the screen size, and based on # of sections. */
|
||||
background: transparent;
|
||||
@@ -523,7 +496,6 @@
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-title .no-items,
|
||||
@@ -539,29 +511,14 @@
|
||||
#available-menu-items .cannot-expand .accordion-section-title .no-items {
|
||||
float: right;
|
||||
color: #555d66;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content {
|
||||
max-height: 290px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content .available-menu-items-list {
|
||||
margin: 0 0 45px 0;
|
||||
padding: 1px 15px 15px 15px;
|
||||
}
|
||||
|
||||
#available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#new-custom-menu-item .accordion-section-content {
|
||||
padding: 0 15px 15px 15px;
|
||||
margin: 0;
|
||||
max-height: 290px;
|
||||
}
|
||||
|
||||
#available-menu-items .menu-item-tpl {
|
||||
@@ -571,9 +528,7 @@
|
||||
#custom-menu-item-name.invalid,
|
||||
#custom-menu-item-url.invalid,
|
||||
.menu-name-field.invalid,
|
||||
.menu-name-field.invalid:focus,
|
||||
#available-menu-items .new-content-item .create-item-input.invalid,
|
||||
#available-menu-items .new-content-item .create-item-input.invalid:focus {
|
||||
.menu-name-field.invalid:focus {
|
||||
border: 1px solid #f00;
|
||||
}
|
||||
|
||||
@@ -615,7 +570,6 @@
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#available-menu-items .menu-item-handle .item-add:focus {
|
||||
@@ -651,17 +605,49 @@
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
cursor: pointer;
|
||||
color: #a00;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results,
|
||||
#available-menu-items-search.loading .clear-results.is-visible {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results.is-visible {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results:before {
|
||||
content: "\f335";
|
||||
font: normal 20px/1 dashicons;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#available-menu-items-search .clear-results:hover,
|
||||
#available-menu-items-search .clear-results:focus {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
#available-menu-items-search .spinner {
|
||||
position: absolute;
|
||||
top: 20px; /* 13 container padding +1 input margin +6 ( ( 32 input height - 20 spinner height ) / 2 ) */
|
||||
right: 21px;
|
||||
top: 20px;
|
||||
margin: 0 !important;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
/* search results list */
|
||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
left: 1px;
|
||||
top: 60px; /* below title div / search input */
|
||||
bottom: 0px; /* 100% height that still triggers lazy load */
|
||||
max-height: none;
|
||||
@@ -672,11 +658,6 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#available-menu-items-search .nothing-found {
|
||||
/* Compensate the 1px top padding of the container. */
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
#available-menu-items-search .accordion-section-title:after {
|
||||
display: none;
|
||||
}
|
||||
@@ -712,10 +693,6 @@ body.adding-menu-items #customize-preview {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
body.adding-menu-items #customize-preview iframe {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.menu-item-handle .spinner {
|
||||
display: none;
|
||||
float: left;
|
||||
@@ -750,14 +727,9 @@ body.adding-menu-items #customize-preview iframe {
|
||||
|
||||
/* Add/delete Menus */
|
||||
|
||||
#customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title {
|
||||
border-bottom-color: #ddd;
|
||||
}
|
||||
|
||||
/* @todo update selector */
|
||||
#accordion-section-add_menu {
|
||||
margin: 15px 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.new-menu-section-content {
|
||||
@@ -799,6 +771,18 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.menu-delete {
|
||||
color: #a00;
|
||||
cursor: pointer;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.menu-delete:hover,
|
||||
.menu-delete:focus {
|
||||
color: #f00;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu-item-handle {
|
||||
margin-top: -1px;
|
||||
}
|
||||
@@ -838,7 +822,8 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||
.wp-customizer .menu-item .submitbox .submitdelete:focus,
|
||||
.customize-screen-options-toggle:focus:before,
|
||||
#customize-controls .customize-info .customize-help-toggle:focus:before,
|
||||
.wp-customizer button:focus .toggle-indicator:before,
|
||||
.wp-customizer button:focus .toggle-indicator:after,
|
||||
#available-menu-items-search .clear-results:focus,
|
||||
.menu-delete:focus,
|
||||
.menu-item-bar .item-delete:focus:before,
|
||||
#available-menu-items .item-add:focus:before {
|
||||
@@ -859,6 +844,6 @@ li.assigned-to-menu-location .add-new-menu-item {
|
||||
|
||||
@media screen and ( max-width: 640px ) {
|
||||
#available-menu-items #available-menu-items-search .accordion-section-content {
|
||||
top: 130px;
|
||||
top: 133px;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/customize-nav-menus.min.css
vendored
2
wp-admin/css/customize-nav-menus.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -18,7 +18,6 @@
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* Note: widget-tops are more compact when (max-height: 700px) and (min-width: 981px). */
|
||||
.customize-control-widget_form .widget-top {
|
||||
background: #fff;
|
||||
-webkit-transition: opacity 0.5s;
|
||||
@@ -90,15 +89,15 @@
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.customize-control-widget_form.expanded .widget-action .toggle-indicator:before {
|
||||
.customize-control-widget_form.expanded a.widget-action:after {
|
||||
content: "\f142";
|
||||
}
|
||||
|
||||
.customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before {
|
||||
.customize-control-widget_form.wide-widget-control a.widget-action:after {
|
||||
content: "\f141";
|
||||
}
|
||||
|
||||
.customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before {
|
||||
.customize-control-widget_form.wide-widget-control.expanded a.widget-action:after {
|
||||
content: "\f139";
|
||||
}
|
||||
|
||||
@@ -213,21 +212,6 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Text Widget */
|
||||
.wp-customizer div.mce-inline-toolbar-grp,
|
||||
.wp-customizer div.mce-tooltip {
|
||||
z-index: 500100 !important;
|
||||
}
|
||||
.wp-customizer .ui-autocomplete.wplink-autocomplete {
|
||||
z-index: 500110; /* originally 100110, but z-index of .wp-full-overlay is 500000 */
|
||||
}
|
||||
.wp-customizer #wp-link-backdrop {
|
||||
z-index: 500100; /* originally 100100, but z-index of .wp-full-overlay is 500000 */
|
||||
}
|
||||
.wp-customizer #wp-link-wrap {
|
||||
z-index: 500105; /* originally 100105, but z-index of .wp-full-overlay is 500000 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Styles for new widget addition panel
|
||||
*/
|
||||
@@ -245,10 +229,8 @@
|
||||
|
||||
#available-widgets .widget-tpl:hover,
|
||||
#available-widgets .widget-tpl.selected {
|
||||
background: #f3f3f5;
|
||||
background: #eee;
|
||||
border-bottom-color: #ccc;
|
||||
color: #0073aa;
|
||||
border-right: 4px solid #0073aa;
|
||||
}
|
||||
|
||||
#customize-controls .widget-title h3 {
|
||||
@@ -439,47 +421,33 @@ body.adding-widget #customize-preview {
|
||||
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; }
|
||||
|
||||
@media screen and (max-height: 700px) and (min-width: 981px) {
|
||||
/* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */
|
||||
.customize-control-widget_form {
|
||||
.customize-control-widget {
|
||||
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 h3 {
|
||||
padding: 13px 15px;
|
||||
}
|
||||
|
||||
.widget-top .widget-action {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
|
||||
.widget-reorder-nav span {
|
||||
height: 39px;
|
||||
}
|
||||
|
||||
.widget-reorder-nav span:before {
|
||||
line-height: 39px;
|
||||
}
|
||||
|
||||
/* Compact the move widget areas. */
|
||||
#customize-theme-controls .widget-area-select li {
|
||||
padding: 9px 42px 11px 15px;
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select li:before {
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
2
wp-admin/css/customize-widgets-rtl.min.css
vendored
2
wp-admin/css/customize-widgets-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -18,7 +18,6 @@
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* Note: widget-tops are more compact when (max-height: 700px) and (min-width: 981px). */
|
||||
.customize-control-widget_form .widget-top {
|
||||
background: #fff;
|
||||
-webkit-transition: opacity 0.5s;
|
||||
@@ -90,15 +89,15 @@
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.customize-control-widget_form.expanded .widget-action .toggle-indicator:before {
|
||||
.customize-control-widget_form.expanded a.widget-action:after {
|
||||
content: "\f142";
|
||||
}
|
||||
|
||||
.customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before {
|
||||
.customize-control-widget_form.wide-widget-control a.widget-action:after {
|
||||
content: "\f139";
|
||||
}
|
||||
|
||||
.customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before {
|
||||
.customize-control-widget_form.wide-widget-control.expanded a.widget-action:after {
|
||||
content: "\f141";
|
||||
}
|
||||
|
||||
@@ -213,21 +212,6 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Text Widget */
|
||||
.wp-customizer div.mce-inline-toolbar-grp,
|
||||
.wp-customizer div.mce-tooltip {
|
||||
z-index: 500100 !important;
|
||||
}
|
||||
.wp-customizer .ui-autocomplete.wplink-autocomplete {
|
||||
z-index: 500110; /* originally 100110, but z-index of .wp-full-overlay is 500000 */
|
||||
}
|
||||
.wp-customizer #wp-link-backdrop {
|
||||
z-index: 500100; /* originally 100100, but z-index of .wp-full-overlay is 500000 */
|
||||
}
|
||||
.wp-customizer #wp-link-wrap {
|
||||
z-index: 500105; /* originally 100105, but z-index of .wp-full-overlay is 500000 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Styles for new widget addition panel
|
||||
*/
|
||||
@@ -245,10 +229,8 @@
|
||||
|
||||
#available-widgets .widget-tpl:hover,
|
||||
#available-widgets .widget-tpl.selected {
|
||||
background: #f3f3f5;
|
||||
background: #eee;
|
||||
border-bottom-color: #ccc;
|
||||
color: #0073aa;
|
||||
border-left: 4px solid #0073aa;
|
||||
}
|
||||
|
||||
#customize-controls .widget-title h3 {
|
||||
@@ -439,47 +421,33 @@ body.adding-widget #customize-preview {
|
||||
#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; }
|
||||
|
||||
@media screen and (max-height: 700px) and (min-width: 981px) {
|
||||
/* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */
|
||||
.customize-control-widget_form {
|
||||
.customize-control-widget {
|
||||
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 h3 {
|
||||
padding: 13px 15px;
|
||||
}
|
||||
|
||||
.widget-top .widget-action {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
|
||||
.widget-reorder-nav span {
|
||||
height: 39px;
|
||||
}
|
||||
|
||||
.widget-reorder-nav span:before {
|
||||
line-height: 39px;
|
||||
}
|
||||
|
||||
/* Compact the move widget areas. */
|
||||
#customize-theme-controls .widget-area-select li {
|
||||
padding: 9px 15px 11px 42px;
|
||||
}
|
||||
|
||||
#customize-theme-controls .widget-area-select li:before {
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
2
wp-admin/css/customize-widgets.min.css
vendored
2
wp-admin/css/customize-widgets.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -114,7 +114,7 @@
|
||||
.welcome-panel h2 {
|
||||
margin: 0;
|
||||
font-size: 21px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
@@ -301,158 +301,6 @@
|
||||
content: "\f153";
|
||||
}
|
||||
|
||||
/* Dashboard WordPress events */
|
||||
|
||||
.community-events-errors {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.community-events-loading {
|
||||
padding: 10px 12px 8px;
|
||||
}
|
||||
|
||||
.community-events {
|
||||
margin-bottom: 6px;
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
.community-events .spinner {
|
||||
float: none;
|
||||
margin: 5px 2px 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.community-events-errors[aria-hidden="true"],
|
||||
.community-events-errors [aria-hidden="true"],
|
||||
.community-events-loading[aria-hidden="true"],
|
||||
.community-events[aria-hidden="true"],
|
||||
.community-events [aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.community-events .activity-block:first-child,
|
||||
.community-events h2 {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.community-events-form {
|
||||
margin: 15px 0 5px;
|
||||
}
|
||||
|
||||
.community-events-form .regular-text {
|
||||
width: 40%;
|
||||
height: 29px;
|
||||
margin: 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.community-events li.event-none {
|
||||
border-right: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
.community-events-form label {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
line-height: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.community-events .activity-block > p {
|
||||
margin-bottom: 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.community-events-toggle-location {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#community-events-submit {
|
||||
margin-right: 3px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
/* Needs higher specificity than #dashboard-widgets .button-link */
|
||||
#dashboard-widgets .community-events-cancel.button-link {
|
||||
vertical-align: top;
|
||||
/* Same properties as the submit button for cross-browsers alignment. */
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.community-events ul {
|
||||
background-color: #fafafa;
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.community-events li {
|
||||
margin: 0;
|
||||
padding: 8px 12px;
|
||||
color: #72777c;
|
||||
}
|
||||
.community-events li:first-child {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.community-events li ~ li {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.community-events .activity-block.last {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding-top: 0;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.community-events .event-info {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.event-icon {
|
||||
height: 18px;
|
||||
padding-left: 10px;
|
||||
width: 18px;
|
||||
display: none; /* Hide on smaller screens */
|
||||
}
|
||||
|
||||
.event-icon:before {
|
||||
color: #82878C;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-meetup .event-icon:before {
|
||||
content: "\f484";
|
||||
}
|
||||
.event-wordcamp .event-icon:before {
|
||||
content: "\f486";
|
||||
}
|
||||
|
||||
.community-events .event-title {
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.community-events .event-date,
|
||||
.community-events .event-time {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.community-events-footer {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
padding: 12px;
|
||||
border-top: 1px solid #eee;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
/* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */
|
||||
.community-events-footer .screen-reader-text {
|
||||
height: inherit;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Dashboard WordPress news */
|
||||
|
||||
#dashboard_primary .inside {
|
||||
@@ -460,21 +308,19 @@
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#dashboard_primary .widget-loading {
|
||||
#dashboard_primary .widget-loading,
|
||||
#dashboard_primary .dashboard-widget-control-form {
|
||||
padding: 12px 12px 0;
|
||||
margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */
|
||||
}
|
||||
|
||||
/* Notice when JS is off. */
|
||||
#dashboard_primary .inside .notice {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body #dashboard-widgets .postbox form .submit {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Used only for configurable widgets. */
|
||||
.dashboard-widget-control-form {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dashboard-widget-control-form p {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -485,8 +331,9 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget {
|
||||
border-bottom: 1px solid #eee;
|
||||
font-size: 13px;
|
||||
padding: 0 12px 0;
|
||||
padding: 8px 12px 10px;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget:last-child {
|
||||
@@ -495,7 +342,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget a {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget span,
|
||||
@@ -508,8 +355,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget ul li {
|
||||
padding: 4px 0;
|
||||
margin: 0;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* Dashboard right now */
|
||||
@@ -554,7 +400,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* Dashboard right now - Colors */
|
||||
@@ -688,7 +534,7 @@ form.initial-form.quickpress-open input#title {
|
||||
}
|
||||
|
||||
#dashboard_primary a.rsswidget {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#dashboard_quick_press .drafts ul {
|
||||
@@ -724,7 +570,7 @@ form.initial-form.quickpress-open input#title {
|
||||
margin: 0 12px 8px;
|
||||
padding: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
@@ -925,8 +771,7 @@ form.initial-form.quickpress-open input#title {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#dashboard-widgets a,
|
||||
#dashboard-widgets .button-link {
|
||||
#dashboard-widgets a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -984,7 +829,7 @@ form.initial-form.quickpress-open input#title {
|
||||
|
||||
#latest-comments #the-comment-list .comment-meta cite {
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#latest-comments #the-comment-list .comment-item blockquote,
|
||||
@@ -1026,9 +871,9 @@ form.initial-form.quickpress-open input#title {
|
||||
}
|
||||
|
||||
a.rsswidget {
|
||||
font-size: 13px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
line-height: 1.4em;
|
||||
line-height: 1.7em;
|
||||
}
|
||||
|
||||
.rss-widget ul li {
|
||||
@@ -1106,6 +951,8 @@ a.rsswidget {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Make the browser nags easier to read with Open Sans */
|
||||
|
||||
#dashboard_browser_nag h2.hndle {
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
@@ -1239,35 +1086,6 @@ a.rsswidget {
|
||||
width: 30px;
|
||||
margin: 4px 0 5px 10px;
|
||||
}
|
||||
|
||||
.community-events-toggle-location {
|
||||
height: 38px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.community-events-form .regular-text {
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
#community-events-submit {
|
||||
margin-bottom: 0;
|
||||
/* Override .wp-core-ui .button */
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.community-events-form label,
|
||||
#dashboard-widgets .community-events-cancel.button-link {
|
||||
/* Same properties as the submit button for cross-browsers alignment. */
|
||||
font-size: 14px;
|
||||
line-height: normal;
|
||||
height: auto;
|
||||
padding: 6px 0;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.community-events .spinner {
|
||||
margin-top: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphone */
|
||||
@@ -1291,30 +1109,3 @@ a.rsswidget {
|
||||
right: -35px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 355px) {
|
||||
.community-events .event-info {
|
||||
display: table-row;
|
||||
float: right;
|
||||
max-width: 59%;
|
||||
}
|
||||
|
||||
.event-icon,
|
||||
.event-icon[aria-hidden="true"] {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.event-info-inner {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.community-events .event-date-time {
|
||||
float: left;
|
||||
max-width: 39%;
|
||||
}
|
||||
|
||||
.community-events .event-date,
|
||||
.community-events .event-time {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/dashboard-rtl.min.css
vendored
2
wp-admin/css/dashboard-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -114,7 +114,7 @@
|
||||
.welcome-panel h2 {
|
||||
margin: 0;
|
||||
font-size: 21px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
@@ -301,158 +301,6 @@
|
||||
content: "\f153";
|
||||
}
|
||||
|
||||
/* Dashboard WordPress events */
|
||||
|
||||
.community-events-errors {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.community-events-loading {
|
||||
padding: 10px 12px 8px;
|
||||
}
|
||||
|
||||
.community-events {
|
||||
margin-bottom: 6px;
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
.community-events .spinner {
|
||||
float: none;
|
||||
margin: 5px 2px 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.community-events-errors[aria-hidden="true"],
|
||||
.community-events-errors [aria-hidden="true"],
|
||||
.community-events-loading[aria-hidden="true"],
|
||||
.community-events[aria-hidden="true"],
|
||||
.community-events [aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.community-events .activity-block:first-child,
|
||||
.community-events h2 {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.community-events-form {
|
||||
margin: 15px 0 5px;
|
||||
}
|
||||
|
||||
.community-events-form .regular-text {
|
||||
width: 40%;
|
||||
height: 29px;
|
||||
margin: 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.community-events li.event-none {
|
||||
border-left: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
.community-events-form label {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
line-height: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.community-events .activity-block > p {
|
||||
margin-bottom: 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.community-events-toggle-location {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#community-events-submit {
|
||||
margin-left: 3px;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
/* Needs higher specificity than #dashboard-widgets .button-link */
|
||||
#dashboard-widgets .community-events-cancel.button-link {
|
||||
vertical-align: top;
|
||||
/* Same properties as the submit button for cross-browsers alignment. */
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.community-events ul {
|
||||
background-color: #fafafa;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.community-events li {
|
||||
margin: 0;
|
||||
padding: 8px 12px;
|
||||
color: #72777c;
|
||||
}
|
||||
.community-events li:first-child {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.community-events li ~ li {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.community-events .activity-block.last {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding-top: 0;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.community-events .event-info {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.event-icon {
|
||||
height: 18px;
|
||||
padding-right: 10px;
|
||||
width: 18px;
|
||||
display: none; /* Hide on smaller screens */
|
||||
}
|
||||
|
||||
.event-icon:before {
|
||||
color: #82878C;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-meetup .event-icon:before {
|
||||
content: "\f484";
|
||||
}
|
||||
.event-wordcamp .event-icon:before {
|
||||
content: "\f486";
|
||||
}
|
||||
|
||||
.community-events .event-title {
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.community-events .event-date,
|
||||
.community-events .event-time {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.community-events-footer {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
padding: 12px;
|
||||
border-top: 1px solid #eee;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
/* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */
|
||||
.community-events-footer .screen-reader-text {
|
||||
height: inherit;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Dashboard WordPress news */
|
||||
|
||||
#dashboard_primary .inside {
|
||||
@@ -460,21 +308,19 @@
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#dashboard_primary .widget-loading {
|
||||
#dashboard_primary .widget-loading,
|
||||
#dashboard_primary .dashboard-widget-control-form {
|
||||
padding: 12px 12px 0;
|
||||
margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */
|
||||
}
|
||||
|
||||
/* Notice when JS is off. */
|
||||
#dashboard_primary .inside .notice {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body #dashboard-widgets .postbox form .submit {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Used only for configurable widgets. */
|
||||
.dashboard-widget-control-form {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dashboard-widget-control-form p {
|
||||
margin-top: 0;
|
||||
}
|
||||
@@ -485,8 +331,9 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget {
|
||||
border-bottom: 1px solid #eee;
|
||||
font-size: 13px;
|
||||
padding: 0 12px 0;
|
||||
padding: 8px 12px 10px;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget:last-child {
|
||||
@@ -495,7 +342,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget a {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget span,
|
||||
@@ -508,8 +355,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
}
|
||||
|
||||
#dashboard_primary .rss-widget ul li {
|
||||
padding: 4px 0;
|
||||
margin: 0;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* Dashboard right now */
|
||||
@@ -554,7 +400,7 @@ body #dashboard-widgets .postbox form .submit {
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* Dashboard right now - Colors */
|
||||
@@ -688,7 +534,7 @@ form.initial-form.quickpress-open input#title {
|
||||
}
|
||||
|
||||
#dashboard_primary a.rsswidget {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#dashboard_quick_press .drafts ul {
|
||||
@@ -724,7 +570,7 @@ form.initial-form.quickpress-open input#title {
|
||||
margin: 0 12px 8px;
|
||||
padding: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
@@ -925,8 +771,7 @@ form.initial-form.quickpress-open input#title {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#dashboard-widgets a,
|
||||
#dashboard-widgets .button-link {
|
||||
#dashboard-widgets a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -984,7 +829,7 @@ form.initial-form.quickpress-open input#title {
|
||||
|
||||
#latest-comments #the-comment-list .comment-meta cite {
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#latest-comments #the-comment-list .comment-item blockquote,
|
||||
@@ -1026,9 +871,9 @@ form.initial-form.quickpress-open input#title {
|
||||
}
|
||||
|
||||
a.rsswidget {
|
||||
font-size: 13px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
line-height: 1.4em;
|
||||
line-height: 1.7em;
|
||||
}
|
||||
|
||||
.rss-widget ul li {
|
||||
@@ -1106,6 +951,8 @@ a.rsswidget {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Make the browser nags easier to read with Open Sans */
|
||||
|
||||
#dashboard_browser_nag h2.hndle {
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
@@ -1239,35 +1086,6 @@ a.rsswidget {
|
||||
width: 30px;
|
||||
margin: 4px 10px 5px 0;
|
||||
}
|
||||
|
||||
.community-events-toggle-location {
|
||||
height: 38px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.community-events-form .regular-text {
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
#community-events-submit {
|
||||
margin-bottom: 0;
|
||||
/* Override .wp-core-ui .button */
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.community-events-form label,
|
||||
#dashboard-widgets .community-events-cancel.button-link {
|
||||
/* Same properties as the submit button for cross-browsers alignment. */
|
||||
font-size: 14px;
|
||||
line-height: normal;
|
||||
height: auto;
|
||||
padding: 6px 0;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.community-events .spinner {
|
||||
margin-top: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphone */
|
||||
@@ -1291,30 +1109,3 @@ a.rsswidget {
|
||||
left: -35px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 355px) {
|
||||
.community-events .event-info {
|
||||
display: table-row;
|
||||
float: left;
|
||||
max-width: 59%;
|
||||
}
|
||||
|
||||
.event-icon,
|
||||
.event-icon[aria-hidden="true"] {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.event-info-inner {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.community-events .event-date-time {
|
||||
float: right;
|
||||
max-width: 39%;
|
||||
}
|
||||
|
||||
.community-events .event-date,
|
||||
.community-events .event-time {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/dashboard.min.css
vendored
2
wp-admin/css/dashboard.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -3,7 +3,7 @@
|
||||
div#media-upload-header {
|
||||
margin: 0;
|
||||
padding: 5px 5px 0;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #f9f9f9;
|
||||
@@ -19,7 +19,7 @@ div#media-upload-header {
|
||||
padding-right: 10px;
|
||||
list-style: none;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#sidemenu a {
|
||||
@@ -46,7 +46,7 @@ div#media-upload-header {
|
||||
}
|
||||
|
||||
#sidemenu a.current {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
border: 1px solid #ddd;
|
||||
@@ -89,7 +89,7 @@ th {
|
||||
.media-upload-form label.form-help, td.help {
|
||||
font-family: sans-serif;
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.media-upload-form p.help {
|
||||
@@ -187,7 +187,7 @@ span.required {
|
||||
#media-upload label.help {
|
||||
font-family: sans-serif;
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#media-upload .ui-sortable .media-item {
|
||||
@@ -294,7 +294,7 @@ h4.media-sub-title {
|
||||
h3.media-title,
|
||||
h4.media-sub-title {
|
||||
font-family: Georgia,"Times New Roman",Times,serif;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
color: #5A5A5A;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/deprecated-media-rtl.min.css
vendored
2
wp-admin/css/deprecated-media-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -3,7 +3,7 @@
|
||||
div#media-upload-header {
|
||||
margin: 0;
|
||||
padding: 5px 5px 0;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #f9f9f9;
|
||||
@@ -19,7 +19,7 @@ div#media-upload-header {
|
||||
padding-left: 10px;
|
||||
list-style: none;
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#sidemenu a {
|
||||
@@ -46,7 +46,7 @@ div#media-upload-header {
|
||||
}
|
||||
|
||||
#sidemenu a.current {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
border: 1px solid #ddd;
|
||||
@@ -89,7 +89,7 @@ th {
|
||||
.media-upload-form label.form-help, td.help {
|
||||
font-family: sans-serif;
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.media-upload-form p.help {
|
||||
@@ -187,7 +187,7 @@ span.required {
|
||||
#media-upload label.help {
|
||||
font-family: sans-serif;
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#media-upload .ui-sortable .media-item {
|
||||
@@ -294,7 +294,7 @@ h4.media-sub-title {
|
||||
h3.media-title,
|
||||
h4.media-sub-title {
|
||||
font-family: Georgia,"Times New Roman",Times,serif;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
color: #5A5A5A;
|
||||
}
|
||||
|
||||
|
||||
2
wp-admin/css/deprecated-media.min.css
vendored
2
wp-admin/css/deprecated-media.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -100,6 +100,8 @@ input#link_url {
|
||||
margin-left: 10px;
|
||||
padding: 0;
|
||||
font-size: 11px;
|
||||
text-decoration: underline;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
#comment-link-box {
|
||||
@@ -112,13 +114,13 @@ input#link_url {
|
||||
}
|
||||
|
||||
#editable-post-name {
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#editable-post-name input {
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
height: 24px;
|
||||
font-weight: normal;
|
||||
height: 22px;
|
||||
margin: 0;
|
||||
width: 16em;
|
||||
}
|
||||
@@ -127,10 +129,23 @@ input#link_url {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.submitbox .submitdelete {
|
||||
text-decoration: none;
|
||||
padding: 1px 2px;
|
||||
}
|
||||
|
||||
body.post-new-php .submitbox .submitdelete {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* @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;
|
||||
}
|
||||
@@ -266,7 +281,7 @@ ul.add-menu-item-tabs li.tabs,
|
||||
ul.category-tabs li,
|
||||
ul.add-menu-item-tabs li,
|
||||
ul.wp-tab-bar li {
|
||||
padding: 3px 5px 6px;
|
||||
padding: 3px 5px 5px;
|
||||
}
|
||||
|
||||
#set-post-thumbnail {
|
||||
@@ -334,7 +349,7 @@ form#tags-filter {
|
||||
}
|
||||
|
||||
#content-resize-handle {
|
||||
background: transparent url(../images/resize.gif) no-repeat scroll left bottom;
|
||||
background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
|
||||
width: 12px;
|
||||
cursor: row-resize;
|
||||
}
|
||||
@@ -362,6 +377,16 @@ form#tags-filter {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#content-textarea-clone {
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.wp-editor-expand #wp-content-editor-tools {
|
||||
z-index: 1000;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
@@ -449,7 +474,7 @@ form#tags-filter {
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#misc-publishing-actions label[for="post_status"]:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
@@ -457,22 +482,20 @@ span.wp-media-buttons-icon:before {
|
||||
color: #82878c;
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before {
|
||||
font: normal 20px/1 dashicons;
|
||||
speak: none;
|
||||
display: inline-block;
|
||||
margin-right: -1px;
|
||||
padding-left: 3px;
|
||||
padding: 0 0 0 2px;
|
||||
top: 0;
|
||||
right: -1px;
|
||||
position: relative;
|
||||
vertical-align: top;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before {
|
||||
content: "\f173";
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
#post-body #visibility:before {
|
||||
@@ -481,7 +504,6 @@ span.wp-media-buttons-icon:before {
|
||||
|
||||
.curtime #timestamp:before {
|
||||
content: "\f145";
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
@@ -580,9 +602,10 @@ span.wp-media-buttons-icon:before {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.tagchecklist > span {
|
||||
float: right;
|
||||
.tagchecklist span {
|
||||
margin-left: 25px;
|
||||
display: block;
|
||||
float: right;
|
||||
font-size: 13px;
|
||||
line-height: 1.8em;
|
||||
cursor: default;
|
||||
@@ -591,16 +614,16 @@ span.wp-media-buttons-icon:before {
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.tagchecklist .ntdelbutton {
|
||||
position: absolute;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
margin: 0 -19px 0 0;
|
||||
padding: 0;
|
||||
background: none;
|
||||
.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 h3.hndle, /* Back-compat for pre-4.4 */
|
||||
@@ -621,26 +644,29 @@ span.wp-media-buttons-icon:before {
|
||||
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-attributes-label-wrapper {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.post-attributes-label {
|
||||
vertical-align: baseline;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
#post-visibility-select {
|
||||
line-height: 1.5em;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
#linksubmitdiv .inside, /* Old Link Manager back-compat. */
|
||||
#poststuff #submitdiv .inside {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -955,9 +981,15 @@ ul.categorychecklist li {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.form-wrap p,
|
||||
.form-wrap label {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.form-wrap label {
|
||||
display: block;
|
||||
padding: 2px 0;
|
||||
padding: 2px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.form-field input[type="text"],
|
||||
@@ -988,8 +1020,8 @@ span.description,
|
||||
}
|
||||
|
||||
.form-wrap .form-field {
|
||||
margin: 1em 0;
|
||||
padding: 0;
|
||||
margin: 0 0 10px;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
.form-wrap .form-field #parent {
|
||||
@@ -1005,9 +1037,6 @@ span.description,
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
.edit-term-notes {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
13.0 - Tags
|
||||
@@ -1058,7 +1087,6 @@ p.popular-tags a {
|
||||
margin: 2px 0 12px;
|
||||
}
|
||||
|
||||
/* Suggest.js autocomplete, no more used by core. */
|
||||
.ac_results {
|
||||
display: none;
|
||||
margin: -1px 0 0;
|
||||
@@ -1092,17 +1120,6 @@ p.popular-tags a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#edittag {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.edit-tag-actions {
|
||||
margin-top: 20px;
|
||||
overflow: hidden;
|
||||
padding: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
/* Comments */
|
||||
|
||||
.comment-php .wp-editor-area {
|
||||
@@ -1114,18 +1131,12 @@ p.popular-tags a {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
.comment-ays .comment-content ul {
|
||||
list-style: initial;
|
||||
margin-right: 2em;
|
||||
}
|
||||
|
||||
.comment-ays .comment-content a[href]:after {
|
||||
content: '(' attr( href ) ')';
|
||||
display: inline-block;
|
||||
padding: 0 4px;
|
||||
color: #72777C;
|
||||
font-size: 13px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.comment-ays .comment-content p.edit-comment {
|
||||
@@ -1179,7 +1190,7 @@ table.links-table {
|
||||
}
|
||||
|
||||
.links-table th {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
text-align: right;
|
||||
vertical-align: top;
|
||||
min-width: 80px;
|
||||
@@ -1219,7 +1230,6 @@ table.links-table {
|
||||
}
|
||||
|
||||
.focus-on .wrap > h1,
|
||||
.focus-on .page-title-action,
|
||||
.focus-on #wpfooter,
|
||||
.focus-on .postbox-container > *,
|
||||
.focus-on div.updated,
|
||||
@@ -1243,7 +1253,6 @@ table.links-table {
|
||||
}
|
||||
|
||||
.focus-off .wrap > h1,
|
||||
.focus-off .page-title-action,
|
||||
.focus-off #wpfooter,
|
||||
.focus-off .postbox-container > *,
|
||||
.focus-off div.updated,
|
||||
@@ -1311,7 +1320,7 @@ table.links-table {
|
||||
(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;
|
||||
background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;
|
||||
-webkit-background-size: 11px 11px;
|
||||
background-size: 11px 11px;
|
||||
}
|
||||
@@ -1359,10 +1368,6 @@ table.links-table {
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-core-ui .edit-tag-actions .button-primary {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#post-body-content {
|
||||
min-width: 0;
|
||||
}
|
||||
@@ -1462,7 +1467,7 @@ table.links-table {
|
||||
margin: 25px 10px;
|
||||
}
|
||||
|
||||
.tagchecklist > span {
|
||||
.tagchecklist span {
|
||||
font-size: 16px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
@@ -1526,14 +1531,17 @@ table.links-table {
|
||||
}
|
||||
|
||||
#wp-content-media-buttons a {
|
||||
font-size: 14px;
|
||||
padding: 6px 10px;
|
||||
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-right: -2px !important;
|
||||
margin-top: -3px !important;
|
||||
margin-right: -5px !important;
|
||||
}
|
||||
|
||||
.wp-media-buttons .add_media span.wp-media-buttons-icon:before,
|
||||
@@ -1584,3 +1592,11 @@ table.links-table {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/edit-rtl.min.css
vendored
2
wp-admin/css/edit-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -100,6 +100,8 @@ input#link_url {
|
||||
margin-right: 10px;
|
||||
padding: 0;
|
||||
font-size: 11px;
|
||||
text-decoration: underline;
|
||||
color: #0073aa;
|
||||
}
|
||||
|
||||
#comment-link-box {
|
||||
@@ -112,13 +114,13 @@ input#link_url {
|
||||
}
|
||||
|
||||
#editable-post-name {
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#editable-post-name input {
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
height: 24px;
|
||||
font-weight: normal;
|
||||
height: 22px;
|
||||
margin: 0;
|
||||
width: 16em;
|
||||
}
|
||||
@@ -127,10 +129,23 @@ input#link_url {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.submitbox .submitdelete {
|
||||
text-decoration: none;
|
||||
padding: 1px 2px;
|
||||
}
|
||||
|
||||
body.post-new-php .submitbox .submitdelete {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* @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;
|
||||
}
|
||||
@@ -266,7 +281,7 @@ ul.add-menu-item-tabs li.tabs,
|
||||
ul.category-tabs li,
|
||||
ul.add-menu-item-tabs li,
|
||||
ul.wp-tab-bar li {
|
||||
padding: 3px 5px 6px;
|
||||
padding: 3px 5px 5px;
|
||||
}
|
||||
|
||||
#set-post-thumbnail {
|
||||
@@ -362,6 +377,16 @@ form#tags-filter {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#content-textarea-clone {
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
visibility: hidden;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.wp-editor-expand #wp-content-editor-tools {
|
||||
z-index: 1000;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
@@ -449,7 +474,7 @@ form#tags-filter {
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#misc-publishing-actions label[for="post_status"]:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before,
|
||||
@@ -457,22 +482,20 @@ span.wp-media-buttons-icon:before {
|
||||
color: #82878c;
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before,
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before,
|
||||
#post-body .misc-pub-revisions:before {
|
||||
font: normal 20px/1 dashicons;
|
||||
speak: none;
|
||||
display: inline-block;
|
||||
margin-left: -1px;
|
||||
padding-right: 3px;
|
||||
padding: 0 2px 0 0;
|
||||
top: 0;
|
||||
left: -1px;
|
||||
position: relative;
|
||||
vertical-align: top;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#post-body .misc-pub-post-status:before {
|
||||
content: "\f173";
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
#post-body #visibility:before {
|
||||
@@ -481,7 +504,6 @@ span.wp-media-buttons-icon:before {
|
||||
|
||||
.curtime #timestamp:before {
|
||||
content: "\f145";
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
@@ -580,9 +602,10 @@ span.wp-media-buttons-icon:before {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.tagchecklist > span {
|
||||
float: left;
|
||||
.tagchecklist span {
|
||||
margin-right: 25px;
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 13px;
|
||||
line-height: 1.8em;
|
||||
cursor: default;
|
||||
@@ -591,16 +614,16 @@ span.wp-media-buttons-icon:before {
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.tagchecklist .ntdelbutton {
|
||||
position: absolute;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
margin: 0 0 0 -19px;
|
||||
padding: 0;
|
||||
background: none;
|
||||
.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 h3.hndle, /* Back-compat for pre-4.4 */
|
||||
@@ -621,26 +644,29 @@ span.wp-media-buttons-icon:before {
|
||||
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-attributes-label-wrapper {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.post-attributes-label {
|
||||
vertical-align: baseline;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
#post-visibility-select {
|
||||
line-height: 1.5em;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
#linksubmitdiv .inside, /* Old Link Manager back-compat. */
|
||||
#poststuff #submitdiv .inside {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -955,9 +981,15 @@ ul.categorychecklist li {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.form-wrap p,
|
||||
.form-wrap label {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.form-wrap label {
|
||||
display: block;
|
||||
padding: 2px 0;
|
||||
padding: 2px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.form-field input[type="text"],
|
||||
@@ -988,8 +1020,8 @@ span.description,
|
||||
}
|
||||
|
||||
.form-wrap .form-field {
|
||||
margin: 1em 0;
|
||||
padding: 0;
|
||||
margin: 0 0 10px;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
.form-wrap .form-field #parent {
|
||||
@@ -1005,9 +1037,6 @@ span.description,
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
.edit-term-notes {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
13.0 - Tags
|
||||
@@ -1058,7 +1087,6 @@ p.popular-tags a {
|
||||
margin: 2px 0 12px;
|
||||
}
|
||||
|
||||
/* Suggest.js autocomplete, no more used by core. */
|
||||
.ac_results {
|
||||
display: none;
|
||||
margin: -1px 0 0;
|
||||
@@ -1092,17 +1120,6 @@ p.popular-tags a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#edittag {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.edit-tag-actions {
|
||||
margin-top: 20px;
|
||||
overflow: hidden;
|
||||
padding: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
/* Comments */
|
||||
|
||||
.comment-php .wp-editor-area {
|
||||
@@ -1114,18 +1131,12 @@ p.popular-tags a {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
.comment-ays .comment-content ul {
|
||||
list-style: initial;
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
.comment-ays .comment-content a[href]:after {
|
||||
content: '(' attr( href ) ')';
|
||||
display: inline-block;
|
||||
padding: 0 4px;
|
||||
color: #72777C;
|
||||
font-size: 13px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.comment-ays .comment-content p.edit-comment {
|
||||
@@ -1179,7 +1190,7 @@ table.links-table {
|
||||
}
|
||||
|
||||
.links-table th {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
min-width: 80px;
|
||||
@@ -1219,7 +1230,6 @@ table.links-table {
|
||||
}
|
||||
|
||||
.focus-on .wrap > h1,
|
||||
.focus-on .page-title-action,
|
||||
.focus-on #wpfooter,
|
||||
.focus-on .postbox-container > *,
|
||||
.focus-on div.updated,
|
||||
@@ -1243,7 +1253,6 @@ table.links-table {
|
||||
}
|
||||
|
||||
.focus-off .wrap > h1,
|
||||
.focus-off .page-title-action,
|
||||
.focus-off #wpfooter,
|
||||
.focus-off .postbox-container > *,
|
||||
.focus-off div.updated,
|
||||
@@ -1359,10 +1368,6 @@ table.links-table {
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-core-ui .edit-tag-actions .button-primary {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#post-body-content {
|
||||
min-width: 0;
|
||||
}
|
||||
@@ -1462,7 +1467,7 @@ table.links-table {
|
||||
margin: 25px 10px;
|
||||
}
|
||||
|
||||
.tagchecklist > span {
|
||||
.tagchecklist span {
|
||||
font-size: 16px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
@@ -1526,14 +1531,17 @@ table.links-table {
|
||||
}
|
||||
|
||||
#wp-content-media-buttons a {
|
||||
font-size: 14px;
|
||||
padding: 6px 10px;
|
||||
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-left: -2px !important;
|
||||
margin-top: -3px !important;
|
||||
margin-left: -5px !important;
|
||||
}
|
||||
|
||||
.wp-media-buttons .add_media span.wp-media-buttons-icon:before,
|
||||
@@ -1584,3 +1592,11 @@ table.links-table {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/edit.min.css
vendored
2
wp-admin/css/edit.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -16,6 +16,7 @@ input[type="datetime-local"],
|
||||
input[type="email"],
|
||||
input[type="month"],
|
||||
input[type="number"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
input[type="radio"],
|
||||
input[type="tel"],
|
||||
@@ -44,6 +45,7 @@ input[type="datetime-local"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="month"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="tel"]:focus,
|
||||
input[type="text"]:focus,
|
||||
@@ -68,7 +70,7 @@ input[type="url"] {
|
||||
/* Vertically align the number selector with the input. */
|
||||
input[type="number"] {
|
||||
height: 28px;
|
||||
line-height: 1;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
input[type="checkbox"],
|
||||
@@ -204,7 +206,6 @@ textarea {
|
||||
|
||||
.wp-admin input[type="file"] {
|
||||
padding: 3px 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
label {
|
||||
@@ -298,7 +299,6 @@ input[type="range"].disabled {
|
||||
background: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:disabled,
|
||||
@@ -386,7 +386,7 @@ textarea.large-text {
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.regular-text {
|
||||
input.regular-text {
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
@@ -458,6 +458,21 @@ fieldset 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;
|
||||
@@ -551,16 +566,6 @@ p.search-box {
|
||||
margin: 0 0 0 4px;
|
||||
}
|
||||
|
||||
.js.plugins-php .search-box .wp-filter-search {
|
||||
margin: 0;
|
||||
width: 280px;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
line-height: 1.5;
|
||||
padding: 3px 5px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
input[type="text"].ui-autocomplete-loading,
|
||||
input[type="email"].ui-autocomplete-loading {
|
||||
background-image: url(../images/loading.gif);
|
||||
@@ -594,18 +599,11 @@ ul#add-to-blog-users {
|
||||
padding: 4px 10px;
|
||||
white-space: nowrap;
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Colors for the wplink toolbar autocomplete. */
|
||||
.ui-autocomplete .ui-state-focus {
|
||||
.ui-autocomplete li.ui-state-focus {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
/* Colors for the tags autocomplete. */
|
||||
.wp-tags-autocomplete .ui-state-focus {
|
||||
background-color: #0073aa;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
@@ -622,7 +620,8 @@ ul#add-to-blog-users {
|
||||
.form-table,
|
||||
.form-table td,
|
||||
.form-table th,
|
||||
.form-table td p {
|
||||
.form-table td p,
|
||||
.form-wrap label {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -636,7 +635,7 @@ ul#add-to-blog-users {
|
||||
.form-table th,
|
||||
.form-wrap label {
|
||||
color: #23282d;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
text-shadow: none;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
@@ -650,10 +649,8 @@ ul#add-to-blog-users {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */
|
||||
.form-table .td-full {
|
||||
.form-table th.th-full {
|
||||
width: auto;
|
||||
padding: 20px 0 20px 10px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
@@ -765,7 +762,7 @@ table.form-table td .updated p {
|
||||
.tool-box .title {
|
||||
margin: 8px 0;
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
@@ -976,7 +973,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .notification-dialog {
|
||||
top: 10%;
|
||||
top: 15%;
|
||||
max-height: 85%;
|
||||
}
|
||||
|
||||
@@ -1034,10 +1031,6 @@ table.form-table td .updated p {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog #auth-keys-desc {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#request-filesystem-credentials-dialog .button:not(:last-child) {
|
||||
margin-left: 10px;
|
||||
}
|
||||
@@ -1050,43 +1043,6 @@ table.form-table td .updated p {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-username,
|
||||
.request-filesystem-credentials-dialog .ftp-password {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-username {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-password {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-password em {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog label {
|
||||
display: block;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form legend {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form #ssh-keys legend {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form .notice {
|
||||
margin: 0 0 20px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
/* =Media Queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
2
wp-admin/css/forms-rtl.min.css
vendored
2
wp-admin/css/forms-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -16,6 +16,7 @@ input[type="datetime-local"],
|
||||
input[type="email"],
|
||||
input[type="month"],
|
||||
input[type="number"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
input[type="radio"],
|
||||
input[type="tel"],
|
||||
@@ -44,6 +45,7 @@ input[type="datetime-local"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="month"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus,
|
||||
input[type="tel"]:focus,
|
||||
input[type="text"]:focus,
|
||||
@@ -68,7 +70,7 @@ input[type="url"] {
|
||||
/* Vertically align the number selector with the input. */
|
||||
input[type="number"] {
|
||||
height: 28px;
|
||||
line-height: 1;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
input[type="checkbox"],
|
||||
@@ -204,7 +206,6 @@ textarea {
|
||||
|
||||
.wp-admin input[type="file"] {
|
||||
padding: 3px 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
label {
|
||||
@@ -298,7 +299,6 @@ input[type="range"].disabled {
|
||||
background: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:disabled,
|
||||
@@ -386,7 +386,7 @@ textarea.large-text {
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.regular-text {
|
||||
input.regular-text {
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
@@ -458,6 +458,21 @@ fieldset 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;
|
||||
@@ -551,16 +566,6 @@ p.search-box {
|
||||
margin: 0 4px 0 0;
|
||||
}
|
||||
|
||||
.js.plugins-php .search-box .wp-filter-search {
|
||||
margin: 0;
|
||||
width: 280px;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
line-height: 1.5;
|
||||
padding: 3px 5px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
input[type="text"].ui-autocomplete-loading,
|
||||
input[type="email"].ui-autocomplete-loading {
|
||||
background-image: url(../images/loading.gif);
|
||||
@@ -594,18 +599,11 @@ ul#add-to-blog-users {
|
||||
padding: 4px 10px;
|
||||
white-space: nowrap;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Colors for the wplink toolbar autocomplete. */
|
||||
.ui-autocomplete .ui-state-focus {
|
||||
.ui-autocomplete li.ui-state-focus {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
/* Colors for the tags autocomplete. */
|
||||
.wp-tags-autocomplete .ui-state-focus {
|
||||
background-color: #0073aa;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
@@ -622,7 +620,8 @@ ul#add-to-blog-users {
|
||||
.form-table,
|
||||
.form-table td,
|
||||
.form-table th,
|
||||
.form-table td p {
|
||||
.form-table td p,
|
||||
.form-wrap label {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -636,7 +635,7 @@ ul#add-to-blog-users {
|
||||
.form-table th,
|
||||
.form-wrap label {
|
||||
color: #23282d;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
text-shadow: none;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
@@ -650,10 +649,8 @@ ul#add-to-blog-users {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */
|
||||
.form-table .td-full {
|
||||
.form-table th.th-full {
|
||||
width: auto;
|
||||
padding: 20px 10px 20px 0;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
@@ -765,7 +762,7 @@ table.form-table td .updated p {
|
||||
.tool-box .title {
|
||||
margin: 8px 0;
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
@@ -976,7 +973,7 @@ table.form-table td .updated p {
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .notification-dialog {
|
||||
top: 10%;
|
||||
top: 15%;
|
||||
max-height: 85%;
|
||||
}
|
||||
|
||||
@@ -1034,10 +1031,6 @@ table.form-table td .updated p {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog #auth-keys-desc {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#request-filesystem-credentials-dialog .button:not(:last-child) {
|
||||
margin-right: 10px;
|
||||
}
|
||||
@@ -1050,43 +1043,6 @@ table.form-table td .updated p {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-username,
|
||||
.request-filesystem-credentials-dialog .ftp-password {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-username {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-password {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog .ftp-password em {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-dialog label {
|
||||
display: block;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form legend {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form #ssh-keys legend {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.request-filesystem-credentials-form .notice {
|
||||
margin: 0 0 20px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
/* =Media Queries
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
2
wp-admin/css/forms.min.css
vendored
2
wp-admin/css/forms.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -221,7 +221,8 @@ table.fixed td {
|
||||
}
|
||||
|
||||
#wpbody-content input.button,
|
||||
#wpbody-content input.button-primary {
|
||||
#wpbody-content input.button-primary,
|
||||
#wpbody-content input.button-secondary {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
@@ -441,17 +442,13 @@ div#dashboard-widgets {
|
||||
padding-left: 1px;
|
||||
}
|
||||
|
||||
.tagchecklist > span, .tagchecklist .ntdelbutton {
|
||||
.tagchecklist span, .tagchecklist span a {
|
||||
display: inline-block;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
|
||||
outline: 1px solid #5b9dd9;
|
||||
}
|
||||
|
||||
.tablenav .button,
|
||||
.nav .button {
|
||||
.tablenav .button-secondary,
|
||||
.nav .button-secondary {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
@@ -510,7 +507,7 @@ table.ie-fixed {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.tablenav a.button {
|
||||
.tablenav a.button-secondary {
|
||||
display: inline-block;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
@@ -641,7 +638,7 @@ input[type="password"],
|
||||
.mce-close {
|
||||
font-family: 'tinymce', Arial;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
font-size: 16px;
|
||||
margin-right: 0;
|
||||
|
||||
2
wp-admin/css/ie-rtl.min.css
vendored
2
wp-admin/css/ie-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -221,7 +221,8 @@ table.fixed td {
|
||||
}
|
||||
|
||||
#wpbody-content input.button,
|
||||
#wpbody-content input.button-primary {
|
||||
#wpbody-content input.button-primary,
|
||||
#wpbody-content input.button-secondary {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
@@ -441,17 +442,13 @@ div#dashboard-widgets {
|
||||
padding-right: 1px;
|
||||
}
|
||||
|
||||
.tagchecklist > span, .tagchecklist .ntdelbutton {
|
||||
.tagchecklist span, .tagchecklist span a {
|
||||
display: inline-block;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
|
||||
outline: 1px solid #5b9dd9;
|
||||
}
|
||||
|
||||
.tablenav .button,
|
||||
.nav .button {
|
||||
.tablenav .button-secondary,
|
||||
.nav .button-secondary {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
@@ -510,7 +507,7 @@ table.ie-fixed {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.tablenav a.button {
|
||||
.tablenav a.button-secondary {
|
||||
display: inline-block;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
@@ -641,7 +638,7 @@ input[type="password"],
|
||||
.mce-close {
|
||||
font-family: 'tinymce', Arial;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
font-size: 16px;
|
||||
margin-left: 0;
|
||||
|
||||
2
wp-admin/css/ie.min.css
vendored
2
wp-admin/css/ie.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -6,7 +6,7 @@ html {
|
||||
body {
|
||||
background: #fff;
|
||||
color: #444;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
margin: 140px auto 25px;
|
||||
padding: 20px 20px 10px 20px;
|
||||
max-width: 700px;
|
||||
@@ -45,7 +45,7 @@ h1, h2 {
|
||||
font-size: 24px;
|
||||
padding: 0;
|
||||
padding-bottom: 7px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h3 {
|
||||
@@ -100,7 +100,7 @@ label {
|
||||
color: #444; /* same as login.css */
|
||||
height: 84px;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 1.3em;
|
||||
margin: -130px auto 25px;
|
||||
padding: 0;
|
||||
@@ -132,7 +132,7 @@ label {
|
||||
}
|
||||
textarea {
|
||||
border: 1px solid #ddd;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
@@ -181,7 +181,7 @@ textarea {
|
||||
|
||||
input,
|
||||
submit {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
|
||||
.form-table input[type=text],
|
||||
@@ -192,7 +192,7 @@ submit {
|
||||
}
|
||||
|
||||
.form-table th p {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.form-table.install-success th,
|
||||
@@ -406,7 +406,7 @@ body.language-chooser {
|
||||
color: #32373c;
|
||||
font-size: 16px;
|
||||
font-family: Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.language-chooser p {
|
||||
@@ -443,7 +443,7 @@ body.language-chooser {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.button.hide-if-no-js,
|
||||
.button-secondary.hide-if-no-js,
|
||||
.hide-if-no-js {
|
||||
display: none;
|
||||
}
|
||||
|
||||
2
wp-admin/css/install-rtl.min.css
vendored
2
wp-admin/css/install-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -6,7 +6,7 @@ html {
|
||||
body {
|
||||
background: #fff;
|
||||
color: #444;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
margin: 140px auto 25px;
|
||||
padding: 20px 20px 10px 20px;
|
||||
max-width: 700px;
|
||||
@@ -45,7 +45,7 @@ h1, h2 {
|
||||
font-size: 24px;
|
||||
padding: 0;
|
||||
padding-bottom: 7px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h3 {
|
||||
@@ -100,7 +100,7 @@ label {
|
||||
color: #444; /* same as login.css */
|
||||
height: 84px;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
line-height: 1.3em;
|
||||
margin: -130px auto 25px;
|
||||
padding: 0;
|
||||
@@ -132,7 +132,7 @@ label {
|
||||
}
|
||||
textarea {
|
||||
border: 1px solid #ddd;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
@@ -181,7 +181,7 @@ textarea {
|
||||
|
||||
input,
|
||||
submit {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
|
||||
.form-table input[type=text],
|
||||
@@ -192,7 +192,7 @@ submit {
|
||||
}
|
||||
|
||||
.form-table th p {
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.form-table.install-success th,
|
||||
@@ -406,7 +406,7 @@ body.language-chooser {
|
||||
color: #32373c;
|
||||
font-size: 16px;
|
||||
font-family: Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.language-chooser p {
|
||||
@@ -443,7 +443,7 @@ body.language-chooser {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.button.hide-if-no-js,
|
||||
.button-secondary.hide-if-no-js,
|
||||
.hide-if-no-js {
|
||||
display: none;
|
||||
}
|
||||
|
||||
2
wp-admin/css/install.min.css
vendored
2
wp-admin/css/install.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ body.rtl .press-this a.wp-switch-editor {
|
||||
.rtl h5,
|
||||
.rtl h6 {
|
||||
font-family: Arial, sans-serif;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
|
||||
@@ -28,7 +28,7 @@ body.locale-he-il .press-this a.wp-switch-editor {
|
||||
/* he_IL: Have <em> be bold rather than italic. */
|
||||
.locale-he-il em {
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* zh_CN: Remove italic properties. */
|
||||
|
||||
2
wp-admin/css/l10n-rtl.min.css
vendored
2
wp-admin/css/l10n-rtl.min.css
vendored
@@ -1 +1 @@
|
||||
.locale-he-il em,.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-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button,.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-weight:600}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.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 .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}
|
||||
.locale-he-il em,.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-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button,.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:700}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-weight:700}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.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 .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}
|
||||
@@ -16,7 +16,7 @@ body.rtl .press-this a.wp-switch-editor {
|
||||
.rtl h5,
|
||||
.rtl h6 {
|
||||
font-family: Arial, sans-serif;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
|
||||
@@ -28,7 +28,7 @@ body.locale-he-il .press-this a.wp-switch-editor {
|
||||
/* he_IL: Have <em> be bold rather than italic. */
|
||||
.locale-he-il em {
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* zh_CN: Remove italic properties. */
|
||||
|
||||
2
wp-admin/css/l10n.min.css
vendored
2
wp-admin/css/l10n.min.css
vendored
@@ -1 +1 @@
|
||||
.locale-he-il em,.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-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button,.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-weight:600}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-left:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.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 .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:0}}
|
||||
.locale-he-il em,.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-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button,.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:700}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-weight:700}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-left:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.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 .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:0}}
|
||||
@@ -555,13 +555,15 @@ tr.wp-locked .locked-indicator {
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
tr.wp-locked .locked-indicator-icon:before {
|
||||
tr.wp-locked .locked-indicator:before {
|
||||
color: #82878c;
|
||||
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;
|
||||
}
|
||||
@@ -579,7 +581,7 @@ tr .locked-info {
|
||||
}
|
||||
|
||||
tr.wp-locked .locked-info {
|
||||
margin-top: 4px;
|
||||
margin-top: 8px;
|
||||
height: auto;
|
||||
opacity: 1;
|
||||
}
|
||||
@@ -654,7 +656,6 @@ th.asc a:focus span.sorting-indicator {
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.tablenav a.button,
|
||||
.tablenav a.button-secondary {
|
||||
display: block;
|
||||
margin: 3px 0 0 8px;
|
||||
@@ -699,7 +700,7 @@ th.asc a:focus span.sorting-indicator {
|
||||
background: #e5e5e5;
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
font-weight: 400;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@@ -1270,6 +1271,10 @@ ul.cat-checklist {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.plugin-update-tr td {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.plugins .inactive td,
|
||||
.plugins .inactive th,
|
||||
.plugins .active td,
|
||||
@@ -1304,11 +1309,22 @@ ul.cat-checklist {
|
||||
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,
|
||||
.plugin-update-tr.active td {
|
||||
border-right: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
.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;
|
||||
@@ -1342,34 +1358,42 @@ ul.cat-checklist {
|
||||
border-top-width: 1px;
|
||||
}
|
||||
|
||||
.plugins .plugin-update-tr .plugin-update {
|
||||
-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; /* clearfix */
|
||||
padding: 0;
|
||||
.plugin-update-tr .update-message {
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
margin: 0 31px 8px 10px;
|
||||
padding: 6px 40px 8px 12px;
|
||||
background-color: #f7f7f7;
|
||||
background-color: rgba(0,0,0,0.03);
|
||||
}
|
||||
|
||||
.plugins .plugin-update-tr .notice,
|
||||
.plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */
|
||||
margin: 5px 40px 15px 20px;
|
||||
}
|
||||
|
||||
.plugins .notice p {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.plugin-card .update-now:before {
|
||||
color: #f56e28;
|
||||
content: "\f463";
|
||||
.plugin-update-tr .update-message:before,
|
||||
.plugin-card .update-now:before,
|
||||
.plugin-card .install-now:before {
|
||||
color: #d54e21;
|
||||
display: inline-block;
|
||||
font: normal 20px/1 dashicons;
|
||||
margin: 3px -2px 0 5px;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.plugin-update-tr .update-message:before,
|
||||
.plugin-card .update-now:before {
|
||||
content: "\f463";
|
||||
}
|
||||
|
||||
.plugin-update-tr .update-message:before {
|
||||
margin: 0 -30px 0 10px;
|
||||
}
|
||||
|
||||
.plugin-card .update-now:before,
|
||||
.plugin-card .install-now:before {
|
||||
margin: 3px -2px 0 5px;
|
||||
}
|
||||
|
||||
.plugin-update-tr .updating-message:before,
|
||||
.plugin-card .updating-message:before {
|
||||
content: "\f463";
|
||||
-webkit-animation: rotation 2s infinite linear;
|
||||
@@ -1398,11 +1422,28 @@ ul.cat-checklist {
|
||||
}
|
||||
}
|
||||
|
||||
.plugin-update-tr .updated-message:before,
|
||||
.plugin-card .updated-message:before {
|
||||
color: #79ba49;
|
||||
content: "\f147";
|
||||
}
|
||||
|
||||
.wp-list-table.plugins tbody tr.plugin-update-tr td.plugin-update {
|
||||
overflow: hidden; /* clearfix */
|
||||
padding: 0;
|
||||
-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:not(.updated) .plugin-update .update-message {
|
||||
background-color: #fcf3ef;
|
||||
}
|
||||
|
||||
.plugin-install-php h2 {
|
||||
clear: both;
|
||||
}
|
||||
@@ -2099,15 +2140,6 @@ div.action-links,
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.plugins .active.update + .plugin-update-tr:before {
|
||||
background-color: #f7fcfe;
|
||||
border-right: 4px solid #00a0d2;
|
||||
}
|
||||
|
||||
.plugins .plugin-update-tr .update-message {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.wp-list-table.plugins .plugin-title strong,
|
||||
.wp-list-table.plugins .theme-title strong {
|
||||
font-size: 1.4em;
|
||||
@@ -2152,15 +2184,3 @@ div.action-links,
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 480px ) {
|
||||
.tablenav-pages .current-page {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.tablenav-pages .tablenav-paging-text {
|
||||
float: right;
|
||||
width: 100%;
|
||||
padding-top: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
2
wp-admin/css/list-tables-rtl.min.css
vendored
2
wp-admin/css/list-tables-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user