48bf7831 by Jeff Balicki

wp update

1 parent 6689eae9
Showing 1000 changed files with 716 additions and 310 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

WordPress - Web publishing software
Copyright 2011-2021 by the contributors
Copyright 2011-2022 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
......
......@@ -51,14 +51,14 @@
<h2>System Requirements</h2>
<ul>
<li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or higher.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</li>
<li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or greater.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or greater.</li>
</ul>
<h3>Recommendations</h3>
<ul>
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or higher.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.6</strong> or higher.</li>
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.7</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.2</strong> or greater.</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 link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
......
......@@ -22,9 +22,10 @@ if ( ! defined( 'WP_ADMIN' ) ) {
* @global string $update_title
* @global int $total_update_count
* @global string $parent_file
* @global string $typenow
*/
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow,
$update_title, $total_update_count, $parent_file;
$update_title, $total_update_count, $parent_file, $typenow;
// Catch plugins that include admin-header.php before admin.php completes.
if ( empty( $current_screen ) ) {
......@@ -48,8 +49,23 @@ if ( $admin_title === $title ) {
/* translators: Admin screen title. %s: Admin screen name. */
$admin_title = sprintf( __( '%s &#8212; WordPress' ), $title );
} else {
$screen_title = $title;
if ( 'post' === $current_screen->base && 'add' !== $current_screen->action ) {
$post_title = get_the_title();
if ( ! empty( $post_title ) ) {
$post_type_obj = get_post_type_object( $typenow );
$screen_title = sprintf(
/* translators: Editor admin screen title. 1: "Edit item" text for the post type, 2: Post title. */
__( '%1$s &#8220;%2$s&#8221;' ),
$post_type_obj->labels->edit_item,
$post_title
);
}
}
/* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */
$admin_title = sprintf( __( '%1$s &lsaquo; %2$s &#8212; WordPress' ), $title, $admin_title );
$admin_title = sprintf( __( '%1$s &lsaquo; %2$s &#8212; WordPress' ), $screen_title, $admin_title );
}
if ( wp_is_recovery_mode() ) {
......@@ -81,7 +97,7 @@ wp_enqueue_script( 'svg-painter' );
$admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );
?>
<script type="text/javascript">
addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(document).ready(func);else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>',
pagenow = '<?php echo esc_js( $current_screen->id ); ?>',
typenow = '<?php echo esc_js( $current_screen->post_type ); ?>',
......@@ -132,7 +148,7 @@ do_action( 'admin_print_scripts' );
/**
* Fires in head section for a specific admin page.
*
* The dynamic portion of the hook, `$hook_suffix`, refers to the hook suffix
* The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix
* for the admin page.
*
* @since 2.1.0
......
......@@ -320,13 +320,24 @@ if ( isset( $plugin_page ) ) {
*
* The dynamic portion of the hook name, `$importer`, refers to the importer slug.
*
* Possible hook names include:
*
* - `load-importer-blogger`
* - `load-importer-wpcat2tag`
* - `load-importer-livejournal`
* - `load-importer-mt`
* - `load-importer-rss`
* - `load-importer-tumblr`
* - `load-importer-wordpress`
*
* @since 3.5.0
*/
do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
// Used in the HTML title tag.
$title = __( 'Import' );
$parent_file = 'tools.php';
$submenu_file = 'import.php';
$title = __( 'Import' );
if ( ! isset( $_GET['noheader'] ) ) {
require_once ABSPATH . 'wp-admin/admin-header.php';
......
......@@ -62,6 +62,7 @@ if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['a
}
}
// Used in the HTML title tag.
$title = __( 'Authorize Application' );
$app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : '';
......@@ -90,7 +91,7 @@ if ( is_wp_error( $is_valid ) ) {
if ( wp_is_site_protected_by_basic_auth( 'front' ) ) {
wp_die(
__( 'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.' ),
__( 'Your website appears to use Basic Authentication, which is not currently compatible with application passwords.' ),
__( 'Cannot Authorize Application' ),
array(
'response' => 501,
......@@ -147,13 +148,13 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php
printf(
/* translators: %s: Application name. */
__( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the app in question.' ),
__( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.' ),
'<strong>' . esc_html( $app_name ) . '</strong>'
);
?>
</p>
<?php else : ?>
<p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the app in question.' ); ?></p>
<p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the application in question.' ); ?></p>
<?php endif; ?>
<?php
......@@ -224,7 +225,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="form-field">
<label for="app_name"><?php _e( 'New Application Password Name' ); ?></label>
<input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" placeholder="<?php esc_attr_e( 'WordPress App on My Phone' ); ?>" required />
<input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" required />
</div>
<?php
......@@ -247,7 +248,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php
submit_button(
__( 'Yes, I approve of this connection.' ),
__( 'Yes, I approve of this connection' ),
'primary',
'approve',
false,
......@@ -262,7 +263,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
printf(
/* translators: %s: The URL the user is being redirected to. */
__( 'You will be sent to %s' ),
'<strong><kbd>' . esc_html(
'<strong><code>' . esc_html(
add_query_arg(
array(
'site_url' => site_url(),
......@@ -271,7 +272,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
),
$success_url
)
) . '</kbd></strong>'
) . '</code></strong>'
);
} else {
_e( 'You will be given a password to manually enter into the application in question.' );
......@@ -281,7 +282,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php
submit_button(
__( 'No, I do not approve of this connection.' ),
__( 'No, I do not approve of this connection' ),
'secondary',
'reject',
false,
......@@ -296,7 +297,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
printf(
/* translators: %s: The URL the user is being redirected to. */
__( 'You will be sent to %s' ),
'<strong><kbd>' . esc_html( $reject_url ) . '</kbd></strong>'
'<strong><code>' . esc_html( $reject_url ) . '</code></strong>'
);
} else {
_e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' );
......
......@@ -53,6 +53,7 @@ if ( isset( $_REQUEST['c'] ) ) {
switch ( $action ) {
case 'editcomment':
// Used in the HTML title tag.
$title = __( 'Edit Comment' );
get_current_screen()->add_help_tab(
......@@ -96,6 +97,7 @@ switch ( $action ) {
case 'approve':
case 'trash':
case 'spam':
// Used in the HTML title tag.
$title = __( 'Moderate Comment' );
if ( ! $comment ) {
......
......@@ -10,6 +10,7 @@
require_once __DIR__ . '/admin.php';
require_once __DIR__ . '/includes/credits.php';
// Used in the HTML title tag.
$title = __( 'Credits' );
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
......@@ -28,7 +29,13 @@ $credits = wp_credits();
</div>
<div class="about__header-text">
<?php _e( 'WordPress 5.8 was created by a worldwide team of passionate individuals' ); ?>
<?php
printf(
/* translators: %s: Version number. */
__( 'WordPress %s was created by a worldwide team of passionate individuals' ),
$display_version
);
?>
</div>
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
......
......@@ -30,7 +30,7 @@
/* Accent colors: used in header, on special classes. */
--accent-1: #3858e9; /* Accent background, link color */
--accent-2: #2d46ba; /* Header background */
--accent-2: #3858e9; /* Header background */
/* Navigation colors. */
--nav-background: #fff;
......@@ -141,25 +141,19 @@
margin: 0 0 var(--gap);
}
.about__section .column {
.about__section .column:not(.is-edge-to-edge) {
padding: var(--gap);
}
.about__section + .about__section .column {
padding-top: 0;
}
.about__section + .about__section .is-section-header {
padding-bottom: var(--gap);
}
.about__section .column[class*="background-color"],
.about__section:where([class*="background-color"]) .column,
.about__section .column.has-border {
padding-top: var(--gap);
}
.about__section .column.is-edge-to-edge {
padding: 0;
padding-bottom: var(--gap);
}
.about__section .column p:first-of-type {
......@@ -215,7 +209,8 @@
}
.about__section.has-gutters {
gap: calc(var(--gap) / 2);
gap: var(--gap);
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns {
......@@ -223,11 +218,11 @@
}
.about__section.has-2-columns.is-wider-right {
grid-template-columns: 1fr 2fr;
grid-template-columns: 2fr 3fr;
}
.about__section.has-2-columns.is-wider-left {
grid-template-columns: 2fr 1fr;
grid-template-columns: 3fr 2fr;
}
.about__section.has-2-columns .is-section-header {
......@@ -329,13 +324,24 @@
.about__section.has-2-columns.is-wider-left,
.about__section.has-3-columns {
display: block;
padding-bottom: calc(var(--gap) / 2);
margin-bottom: calc(var(--gap) / 2);
}
.about__section .column:not(.is-edge-to-edge) {
padding-top: var(--gap);
padding-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters.is-wider-right,
.about__section.has-2-columns.has-gutters.is-wider-left,
.about__section.has-3-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns.has-gutters .column,
.about__section.has-2-columns.has-gutters .column,
.about__section.has-3-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2);
margin-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters .column:last-child,
......@@ -394,21 +400,25 @@
@media screen and (max-width: 600px) {
.about__section.has-2-columns {
display: block;
margin-bottom: var(--gap);
}
.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2);
}
.about__section.has-2-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2);
margin-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters .column:last-child {
margin-bottom: 0;
}
.about__section.has-2-columns .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2);
}
}
@media screen and (max-width: 480px) {
......@@ -471,6 +481,11 @@
line-height: inherit;
}
.about__container p.is-subheading {
margin-top: 0;
font-size: 1.8em;
}
.about__section a {
color: var(--accent-1);
text-decoration: underline;
......@@ -524,46 +539,6 @@
margin-left: auto;
}
.about__container .about__image-comparison {
position: relative;
display: inline-block;
max-width: 100%;
}
.about__container .about__image-comparison img {
-webkit-user-select: none;
user-select: none;
width: auto;
max-width: none;
max-height: 100%;
}
.about__container .about__image-comparison > img {
max-width: 100%;
}
.about__container .about__image-comparison-resize {
position: absolute !important; /* Needed to override inline style on ResizableBox */
top: 0;
bottom: 0;
right: 0;
width: 50%;
max-width: 100%;
}
.about__container .about__image-comparison.no-js .about__image-comparison-resize {
overflow: hidden;
border-left: 2px solid var(--wp-admin-theme-color);
}
.about__container .about__image-comparison-resize .components-resizable-box__side-handle::before {
width: 4px;
left: calc(50% - 2px);
transition: none;
animation: none;
opacity: 1;
}
.about__container .about__image + h3 {
margin-top: 1.5em;
}
......@@ -612,25 +587,46 @@
/* 1.3 - Header */
.about__header {
position: relative;
margin-bottom: var(--gap);
padding-top: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/about-header-about.svg');
background-image: url('../images/about-texture.png');
background-color: var(--accent-2);
background-size: 500px 500px;
background-blend-mode: overlay;
color: var(--text-light);
}
.credits-php .about__header {
.about__header::before {
content: "";
position: absolute;
top: 0;
left: 64px;
z-index: 0;
width: 300px;
height: 382px;
background: url(../images/about-header-about.svg) no-repeat center;
background-size: contain;
}
.credits-php .about__header::before {
top: auto;
bottom: 70px;
height: 310px;
background-image: url('../images/about-header-credits.svg');
}
.freedoms-php .about__header {
.freedoms-php .about__header::before {
top: calc(50% - 182px);
left: 32px;
width: 375px;
height: 300px;
background-image: url('../images/about-header-freedoms.svg');
}
.privacy-php .about__header {
.privacy-php .about__header::before {
top: auto;
bottom: -16px;
background-image: url('../images/about-header-privacy.svg');
}
......@@ -639,7 +635,9 @@
}
.about__header-title {
padding: 2rem 0 0;
box-sizing: border-box;
/* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
padding: 6rem 0 0 380px;
margin: 0 2rem;
}
......@@ -652,14 +650,24 @@
}
.about__header-text {
max-width: 42rem;
margin: 0 0 5em;
padding: 0 2rem;
font-size: 2rem;
box-sizing: border-box;
margin: 0 0 7rem;
/* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
padding: 0 2rem 0 380px;
font-size: 1.6rem;
line-height: 1.15;
}
.freedoms-php .about__header-title,
.freedoms-php .about__header-text {
/* 423px = 375px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-left: 423px;
margin-left: 0;
}
.about__header-navigation {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
padding-top: 0;
......@@ -708,6 +716,27 @@
}
@media screen and (max-width: 782px) {
.about__header::before {
width: 240px;
height: 305px;
left: 32px;
}
.credits-php .about__header::before {
height: 248px;
}
.freedoms-php .about__header::before {
top: calc(50% - 132px);
height: 192px;
width: 240px;
}
.privacy-php .about__header::before {
bottom: 0;
height: 280px;
}
.about__container .about__header-text {
font-size: 1.4em;
}
......@@ -717,12 +746,23 @@
}
.about__header-title,
.about__header-text {
/* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-left: 288px !important;
}
.about__header-title,
.about__header-image {
margin-right: calc(var(--gap) / 2);
margin-left: calc(var(--gap) / 2);
}
.about__header-text,
.about__header-text {
margin-top: 0;
margin-left: 0;
padding-right: calc(var(--gap) / 2);
}
.about__header-navigation .nav-tab {
margin-top: 0;
margin-left: 0;
......@@ -731,13 +771,28 @@
}
}
@media screen and (max-width: 600px) {
.about__header::before {
display: none;
}
.about__header-title,
.about__header-text {
padding-left: calc(var(--gap) / 2) !important;
}
}
@media screen and (max-width: 480px) {
.about__header-title p {
font-size: 2.4em;
}
.about__header-title {
padding-top: 2rem;
}
.about__header-text {
margin-bottom: 1em;
margin-bottom: 2rem;
}
.about__header-navigation {
......
......@@ -29,7 +29,7 @@
/* Accent colors: used in header, on special classes. */
--accent-1: #3858e9; /* Accent background, link color */
--accent-2: #2d46ba; /* Header background */
--accent-2: #3858e9; /* Header background */
/* Navigation colors. */
--nav-background: #fff;
......@@ -140,25 +140,19 @@
margin: 0 0 var(--gap);
}
.about__section .column {
.about__section .column:not(.is-edge-to-edge) {
padding: var(--gap);
}
.about__section + .about__section .column {
padding-top: 0;
}
.about__section + .about__section .is-section-header {
padding-bottom: var(--gap);
}
.about__section .column[class*="background-color"],
.about__section:where([class*="background-color"]) .column,
.about__section .column.has-border {
padding-top: var(--gap);
}
.about__section .column.is-edge-to-edge {
padding: 0;
padding-bottom: var(--gap);
}
.about__section .column p:first-of-type {
......@@ -214,7 +208,8 @@
}
.about__section.has-gutters {
gap: calc(var(--gap) / 2);
gap: var(--gap);
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns {
......@@ -222,11 +217,11 @@
}
.about__section.has-2-columns.is-wider-right {
grid-template-columns: 1fr 2fr;
grid-template-columns: 2fr 3fr;
}
.about__section.has-2-columns.is-wider-left {
grid-template-columns: 2fr 1fr;
grid-template-columns: 3fr 2fr;
}
.about__section.has-2-columns .is-section-header {
......@@ -328,13 +323,24 @@
.about__section.has-2-columns.is-wider-left,
.about__section.has-3-columns {
display: block;
padding-bottom: calc(var(--gap) / 2);
margin-bottom: calc(var(--gap) / 2);
}
.about__section .column:not(.is-edge-to-edge) {
padding-top: var(--gap);
padding-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters.is-wider-right,
.about__section.has-2-columns.has-gutters.is-wider-left,
.about__section.has-3-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns.has-gutters .column,
.about__section.has-2-columns.has-gutters .column,
.about__section.has-3-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2);
margin-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters .column:last-child,
......@@ -393,21 +399,25 @@
@media screen and (max-width: 600px) {
.about__section.has-2-columns {
display: block;
margin-bottom: var(--gap);
}
.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2);
}
.about__section.has-2-columns.has-gutters {
margin-bottom: calc(var(--gap) * 2);
}
.about__section.has-2-columns.has-gutters .column {
margin-bottom: calc(var(--gap) / 2);
margin-bottom: var(--gap);
}
.about__section.has-2-columns.has-gutters .column:last-child {
margin-bottom: 0;
}
.about__section.has-2-columns .column:nth-of-type(n) {
padding-top: calc(var(--gap) / 2);
padding-bottom: calc(var(--gap) / 2);
}
}
@media screen and (max-width: 480px) {
......@@ -470,6 +480,11 @@
line-height: inherit;
}
.about__container p.is-subheading {
margin-top: 0;
font-size: 1.8em;
}
.about__section a {
color: var(--accent-1);
text-decoration: underline;
......@@ -523,46 +538,6 @@
margin-right: auto;
}
.about__container .about__image-comparison {
position: relative;
display: inline-block;
max-width: 100%;
}
.about__container .about__image-comparison img {
-webkit-user-select: none;
user-select: none;
width: auto;
max-width: none;
max-height: 100%;
}
.about__container .about__image-comparison > img {
max-width: 100%;
}
.about__container .about__image-comparison-resize {
position: absolute !important; /* Needed to override inline style on ResizableBox */
top: 0;
bottom: 0;
left: 0;
width: 50%;
max-width: 100%;
}
.about__container .about__image-comparison.no-js .about__image-comparison-resize {
overflow: hidden;
border-right: 2px solid var(--wp-admin-theme-color);
}
.about__container .about__image-comparison-resize .components-resizable-box__side-handle::before {
width: 4px;
right: calc(50% - 2px);
transition: none;
animation: none;
opacity: 1;
}
.about__container .about__image + h3 {
margin-top: 1.5em;
}
......@@ -611,25 +586,46 @@
/* 1.3 - Header */
.about__header {
position: relative;
margin-bottom: var(--gap);
padding-top: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/about-header-about.svg');
background-image: url('../images/about-texture.png');
background-color: var(--accent-2);
background-size: 500px 500px;
background-blend-mode: overlay;
color: var(--text-light);
}
.credits-php .about__header {
.about__header::before {
content: "";
position: absolute;
top: 0;
right: 64px;
z-index: 0;
width: 300px;
height: 382px;
background: url(../images/about-header-about.svg) no-repeat center;
background-size: contain;
}
.credits-php .about__header::before {
top: auto;
bottom: 70px;
height: 310px;
background-image: url('../images/about-header-credits.svg');
}
.freedoms-php .about__header {
.freedoms-php .about__header::before {
top: calc(50% - 182px);
right: 32px;
width: 375px;
height: 300px;
background-image: url('../images/about-header-freedoms.svg');
}
.privacy-php .about__header {
.privacy-php .about__header::before {
top: auto;
bottom: -16px;
background-image: url('../images/about-header-privacy.svg');
}
......@@ -638,7 +634,9 @@
}
.about__header-title {
padding: 2rem 0 0;
box-sizing: border-box;
/* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
padding: 6rem 380px 0 0;
margin: 0 2rem;
}
......@@ -651,14 +649,24 @@
}
.about__header-text {
max-width: 42rem;
margin: 0 0 5em;
padding: 0 2rem;
font-size: 2rem;
box-sizing: border-box;
margin: 0 0 7rem;
/* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */
padding: 0 380px 0 2rem;
font-size: 1.6rem;
line-height: 1.15;
}
.freedoms-php .about__header-title,
.freedoms-php .about__header-text {
/* 423px = 375px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-right: 423px;
margin-right: 0;
}
.about__header-navigation {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
padding-top: 0;
......@@ -707,6 +715,27 @@
}
@media screen and (max-width: 782px) {
.about__header::before {
width: 240px;
height: 305px;
right: 32px;
}
.credits-php .about__header::before {
height: 248px;
}
.freedoms-php .about__header::before {
top: calc(50% - 132px);
height: 192px;
width: 240px;
}
.privacy-php .about__header::before {
bottom: 0;
height: 280px;
}
.about__container .about__header-text {
font-size: 1.4em;
}
......@@ -716,12 +745,23 @@
}
.about__header-title,
.about__header-text {
/* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */
padding-right: 288px !important;
}
.about__header-title,
.about__header-image {
margin-left: calc(var(--gap) / 2);
margin-right: calc(var(--gap) / 2);
}
.about__header-text,
.about__header-text {
margin-top: 0;
margin-right: 0;
padding-left: calc(var(--gap) / 2);
}
.about__header-navigation .nav-tab {
margin-top: 0;
margin-right: 0;
......@@ -730,13 +770,28 @@
}
}
@media screen and (max-width: 600px) {
.about__header::before {
display: none;
}
.about__header-title,
.about__header-text {
padding-right: calc(var(--gap) / 2) !important;
}
}
@media screen and (max-width: 480px) {
.about__header-title p {
font-size: 2.4em;
}
.about__header-title {
padding-top: 2rem;
}
.about__header-text {
margin-bottom: 1em;
margin-bottom: 2rem;
}
.about__header-navigation {
......
......@@ -40,7 +40,7 @@
.icon16 {
height: 18px;
width: 18px;
padding: 6px 6px;
padding: 6px;
margin: -6px -8px 0 0;
float: right;
}
......@@ -162,7 +162,6 @@
#adminmenu li {
margin: 0;
padding: 0;
cursor: pointer;
}
#adminmenu a {
......@@ -346,7 +345,7 @@
}
#adminmenu .wp-menu-image img {
padding: 9px 0 0 0;
padding: 9px 0 0;
opacity: 0.6;
filter: alpha(opacity=60);
}
......@@ -489,7 +488,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li.wp-menu-separator {
height: 5px;
padding: 0;
margin: 0 0 6px 0;
margin: 0 0 6px;
cursor: inherit;
}
......@@ -504,7 +503,7 @@ ul#adminmenu > li.current > a.current:after {
font-weight: 400;
font-size: 14px;
padding: 5px 11px 5px 4px;
margin: -7px -5px 4px 0px;
margin: -7px -5px 4px 0;
border-width: 3px 5px 3px 0;
border-style: solid;
border-color: transparent;
......@@ -655,7 +654,7 @@ li#wp-admin-bar-menu-toggle {
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
top: 0px;
top: 0;
right: 36px;
}
......
......@@ -39,7 +39,7 @@
.icon16 {
height: 18px;
width: 18px;
padding: 6px 6px;
padding: 6px;
margin: -6px 0 0 -8px;
float: left;
}
......@@ -161,7 +161,6 @@
#adminmenu li {
margin: 0;
padding: 0;
cursor: pointer;
}
#adminmenu a {
......@@ -345,7 +344,7 @@
}
#adminmenu .wp-menu-image img {
padding: 9px 0 0 0;
padding: 9px 0 0;
opacity: 0.6;
filter: alpha(opacity=60);
}
......@@ -488,7 +487,7 @@ ul#adminmenu > li.current > a.current:after {
#adminmenu li.wp-menu-separator {
height: 5px;
padding: 0;
margin: 0 0 6px 0;
margin: 0 0 6px;
cursor: inherit;
}
......@@ -503,7 +502,7 @@ ul#adminmenu > li.current > a.current:after {
font-weight: 400;
font-size: 14px;
padding: 5px 4px 5px 11px;
margin: -7px 0px 4px -5px;
margin: -7px 0 4px -5px;
border-width: 3px 0 3px 5px;
border-style: solid;
border-color: transparent;
......@@ -654,7 +653,7 @@ li#wp-admin-bar-menu-toggle {
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
top: 0px;
top: 0;
left: 36px;
}
......
......@@ -12,7 +12,7 @@
/* Needs higher specificiity. */
.wp-picker-container .wp-color-result.button {
min-height: 30px;
margin: 0 0px 6px 6px;
margin: 0 0 6px 6px;
padding: 0 30px 0 0;
font-size: 11px;
}
......
......@@ -11,7 +11,7 @@
/* Needs higher specificiity. */
.wp-picker-container .wp-color-result.button {
min-height: 30px;
margin: 0 6px 6px 0px;
margin: 0 6px 6px 0;
padding: 0 0 0 30px;
font-size: 11px;
}
......
......@@ -781,3 +781,17 @@ div#wp-responsive-toggle a:before {
color: $link;
}
}
/* Welcome Panel */
.welcome-panel {
background-color: $highlight-color;
}
[class*="welcome-panel-icon"] {
@if ( $scheme-name == "light" ) {
background-color: $icon-color;
} @else {
background-color: $base-color;
}
}
......
// assign default value to all undefined variables
$scheme-name: "default" !default;
// core variables
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e1a948;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #096484;
}
[class*=welcome-panel-icon] {
background-color: #52accc;
}
\ No newline at end of file
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e1a948;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #096484;
}
[class*=welcome-panel-icon] {
background-color: #52accc;
}
\ No newline at end of file
......
$scheme-name: "blue";
$base-color: #52accc;
$icon-color: #e5f8ff;
$highlight-color: #096484;
......
......@@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #c7a589;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #c7a589;
}
[class*=welcome-panel-icon] {
background-color: #59524c;
}
\ No newline at end of file
......
......@@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #c7a589;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #c7a589;
}
[class*=welcome-panel-icon] {
background-color: #59524c;
}
\ No newline at end of file
......
$scheme-name: "coffee";
$base-color: #59524c;
$highlight-color: #c7a589;
$notification-color: #9ea476;
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #a3b745;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #a3b745;
}
[class*=welcome-panel-icon] {
background-color: #523f6d;
}
\ No newline at end of file
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #a3b745;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #a3b745;
}
[class*=welcome-panel-icon] {
background-color: #523f6d;
}
\ No newline at end of file
......
$scheme-name: "ectoplasm";
$base-color: #523f6d;
$icon-color: #ece6f6;
$highlight-color: #a3b745;
......
......@@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before {
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #04a4cc;
}
[class*=welcome-panel-icon] {
background-color: #999;
}
/* Override the theme filter highlight color for this scheme */
.theme-section.current,
.theme-filter.current {
......
......@@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before {
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #04a4cc;
}
[class*=welcome-panel-icon] {
background-color: #999;
}
/* Override the theme filter highlight color for this scheme */
.theme-section.current,
.theme-filter.current {
......
$scheme-name: "light";
$base-color: #e5e5e5;
$icon-color: #999;
$text-color: #333;
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e14d43;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #e14d43;
}
[class*=welcome-panel-icon] {
background-color: #363b3f;
}
\ No newline at end of file
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #e14d43;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #e14d43;
}
[class*=welcome-panel-icon] {
background-color: #363b3f;
}
\ No newline at end of file
......
$scheme-name: "midnight";
$base-color: #363b3f;
$highlight-color: #e14d43;
$notification-color: #69a8bb;
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #3858e9;
color: #3858e9;
}
/* Welcome Panel */
.welcome-panel {
background-color: #3858e9;
}
[class*=welcome-panel-icon] {
background-color: #1e1e1e;
}
\ No newline at end of file
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #3858e9;
color: #3858e9;
}
/* Welcome Panel */
.welcome-panel {
background-color: #3858e9;
}
[class*=welcome-panel-icon] {
background-color: #1e1e1e;
}
\ No newline at end of file
......
$scheme-name: "modern";
$base-color: #1e1e1e;
$highlight-color: #3858e9;
$menu-submenu-focus-text: #33f078;
......
......@@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #9ebaa0;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #9ebaa0;
}
[class*=welcome-panel-icon] {
background-color: #738e96;
}
\ No newline at end of file
......
......@@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #9ebaa0;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #9ebaa0;
}
[class*=welcome-panel-icon] {
background-color: #738e96;
}
\ No newline at end of file
......
$scheme-name: "ocean";
$base-color: #738e96;
$icon-color: #f2fcff;
$highlight-color: #9ebaa0;
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #dd823b;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #dd823b;
}
[class*=welcome-panel-icon] {
background-color: #cf4944;
}
\ No newline at end of file
......
......@@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before {
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
border-bottom-color: #dd823b;
color: #0073aa;
}
/* Welcome Panel */
.welcome-panel {
background-color: #dd823b;
}
[class*=welcome-panel-icon] {
background-color: #cf4944;
}
\ No newline at end of file
......
$scheme-name: "sunrise";
$base-color: #cf4944;
$highlight-color: #dd823b;
$notification-color: #ccaf0b;
......
......@@ -418,7 +418,7 @@ code {
kbd,
code {
padding: 3px 5px 2px 5px;
padding: 3px 5px 2px;
margin: 0 1px;
background: #f0f0f1;
background: rgba(0, 0, 0, 0.07);
......@@ -583,7 +583,7 @@ code {
font-size: 23px;
font-weight: 400;
margin: 0;
padding: 9px 0 4px 0;
padding: 9px 0 4px;
line-height: 1.3;
}
......@@ -824,8 +824,6 @@ img.emoji {
outline: 0;
}
.welcome-panel .welcome-panel-close:hover:before,
.welcome-panel .welcome-panel-close:focus:before,
.tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before,
#bulk-titles div a:hover:before,
......@@ -884,7 +882,8 @@ hr {
#media-items a.delete-permanently,
#nav-menu-footer .menu-delete,
#delete-link a.delete,
a#remove-post-thumbnail {
a#remove-post-thumbnail,
.privacy_requests .remove-personal-data .remove-personal-data-handle {
color: #b32d2e;
}
......@@ -902,7 +901,8 @@ span.required,
#media-items a.delete-permanently:hover,
#nav-menu-footer .menu-delete:hover,
#delete-link a.delete:hover,
a#remove-post-thumbnail:hover {
a#remove-post-thumbnail:hover,
.privacy_requests .remove-personal-data .remove-personal-data-handle:hover {
color: #b32d2e;
border: none;
}
......@@ -958,7 +958,7 @@ a#remove-post-thumbnail:hover {
}
#minor-publishing-actions {
padding: 10px 10px 0 10px;
padding: 10px 10px 0;
text-align: left;
}
......@@ -1233,7 +1233,7 @@ th.action-links {
.filter-group .filter-group-feature label {
display: block;
margin: 14px 23px 14px 0px;
margin: 14px 23px 14px 0;
}
.filter-drawer .buttons {
......@@ -1610,7 +1610,7 @@ form.upgrade {
form.upgrade .hint {
font-style: italic;
font-size: 85%;
margin: -0.5em 0 2em 0;
margin: -0.5em 0 2em;
}
.update-php .spinner {
......@@ -1708,7 +1708,7 @@ p.auto-update-status {
/* screen options and help tabs revert */
#screen-meta {
display: none;
margin: 0 0px -1px 20px;
margin: 0 0 -1px 20px;
position: relative;
background-color: #fff;
border: 1px solid #c3c4c7;
......@@ -3144,7 +3144,7 @@ img {
width: 300px;
}
/* Theme/Plugin Editor */
/* Theme/Plugin file editor */
.alignleft h2 {
margin: 0;
}
......@@ -3197,7 +3197,7 @@ img {
}
/*
* Styles for Theme and Plugin editors.
* Styles for Theme and Plugin file editors.
*/
/* Hide collapsed items. */
......@@ -3286,7 +3286,7 @@ img {
.tree-folder > .current-file::before {
right: 4px;
height: 15px;
width: 0px;
width: 0;
border-right: none;
top: 3px;
}
......@@ -3381,7 +3381,7 @@ img {
}
#templateside li.howto {
padding: 6px 12px 12px 12px;
padding: 6px 12px 12px;
}
.theme-editor-php .highlight {
......@@ -3433,7 +3433,7 @@ img {
}
.widget-top .widget-action .toggle-indicator:before {
padding: 1px 0px 1px 2px;
padding: 1px 0 1px 2px;
border-radius: 50%;
}
......@@ -3828,7 +3828,7 @@ img {
.wrap div.updated,
.wrap div.error,
.media-upload-form div.error {
margin: 20px 0 10px 0;
margin: 20px 0 10px;
padding: 5px 10px;
font-size: 14px;
line-height: 175%;
......@@ -3938,7 +3938,7 @@ img {
right: -8px;
}
.tree-folder > li::before {
top: 0px;
top: 0;
height: 13px;
}
.tree-folder > .current-file::before {
......
This diff could not be displayed because it is too large.
......@@ -417,7 +417,7 @@ code {
kbd,
code {
padding: 3px 5px 2px 5px;
padding: 3px 5px 2px;
margin: 0 1px;
background: #f0f0f1;
background: rgba(0, 0, 0, 0.07);
......@@ -582,7 +582,7 @@ code {
font-size: 23px;
font-weight: 400;
margin: 0;
padding: 9px 0 4px 0;
padding: 9px 0 4px;
line-height: 1.3;
}
......@@ -823,8 +823,6 @@ img.emoji {
outline: 0;
}
.welcome-panel .welcome-panel-close:hover:before,
.welcome-panel .welcome-panel-close:focus:before,
.tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before,
#bulk-titles div a:hover:before,
......@@ -883,7 +881,8 @@ hr {
#media-items a.delete-permanently,
#nav-menu-footer .menu-delete,
#delete-link a.delete,
a#remove-post-thumbnail {
a#remove-post-thumbnail,
.privacy_requests .remove-personal-data .remove-personal-data-handle {
color: #b32d2e;
}
......@@ -901,7 +900,8 @@ span.required,
#media-items a.delete-permanently:hover,
#nav-menu-footer .menu-delete:hover,
#delete-link a.delete:hover,
a#remove-post-thumbnail:hover {
a#remove-post-thumbnail:hover,
.privacy_requests .remove-personal-data .remove-personal-data-handle:hover {
color: #b32d2e;
border: none;
}
......@@ -957,7 +957,7 @@ a#remove-post-thumbnail:hover {
}
#minor-publishing-actions {
padding: 10px 10px 0 10px;
padding: 10px 10px 0;
text-align: right;
}
......@@ -1232,7 +1232,7 @@ th.action-links {
.filter-group .filter-group-feature label {
display: block;
margin: 14px 0px 14px 23px;
margin: 14px 0 14px 23px;
}
.filter-drawer .buttons {
......@@ -1609,7 +1609,7 @@ form.upgrade {
form.upgrade .hint {
font-style: italic;
font-size: 85%;
margin: -0.5em 0 2em 0;
margin: -0.5em 0 2em;
}
.update-php .spinner {
......@@ -1707,7 +1707,7 @@ p.auto-update-status {
/* screen options and help tabs revert */
#screen-meta {
display: none;
margin: 0 20px -1px 0px;
margin: 0 20px -1px 0;
position: relative;
background-color: #fff;
border: 1px solid #c3c4c7;
......@@ -3143,7 +3143,7 @@ img {
width: 300px;
}
/* Theme/Plugin Editor */
/* Theme/Plugin file editor */
.alignleft h2 {
margin: 0;
}
......@@ -3196,7 +3196,7 @@ img {
}
/*
* Styles for Theme and Plugin editors.
* Styles for Theme and Plugin file editors.
*/
/* Hide collapsed items. */
......@@ -3285,7 +3285,7 @@ img {
.tree-folder > .current-file::before {
left: 4px;
height: 15px;
width: 0px;
width: 0;
border-left: none;
top: 3px;
}
......@@ -3380,7 +3380,7 @@ img {
}
#templateside li.howto {
padding: 6px 12px 12px 12px;
padding: 6px 12px 12px;
}
.theme-editor-php .highlight {
......@@ -3432,7 +3432,7 @@ img {
}
.widget-top .widget-action .toggle-indicator:before {
padding: 1px 2px 1px 0px;
padding: 1px 2px 1px 0;
border-radius: 50%;
}
......@@ -3827,7 +3827,7 @@ img {
.wrap div.updated,
.wrap div.error,
.media-upload-form div.error {
margin: 20px 0 10px 0;
margin: 20px 0 10px;
padding: 5px 10px;
font-size: 14px;
line-height: 175%;
......@@ -3937,7 +3937,7 @@ img {
left: -8px;
}
.tree-folder > li::before {
top: 0px;
top: 0;
height: 13px;
}
.tree-folder > .current-file::before {
......
This diff could not be displayed because it is too large.
......@@ -106,6 +106,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
height: 100%;
}
@media (prefers-reduced-motion: reduce) {
#customize-sidebar-outer-content {
transition: none;
}
}
#customize-theme-controls .control-section-outer {
display: none !important;
}
......@@ -124,6 +130,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
transition: right .18s;
}
@media (prefers-reduced-motion: reduce) {
.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content {
transition: none;
}
}
.customize-outer-pane-parent {
margin: 0;
}
......@@ -538,6 +550,13 @@ body.trashing #publish-settings {
.15s border-color ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
transition: none;
}
}
#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title {
color: #50575e;
background-color: #fff;
......@@ -636,6 +655,14 @@ body.trashing #publish-settings {
transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
@media (prefers-reduced-motion: reduce) {
#customize-info,
#customize-theme-controls .customize-pane-parent,
#customize-theme-controls .customize-pane-child {
transition: none;
}
}
#customize-theme-controls .customize-pane-child.skip-transition {
transition: none;
}
......@@ -717,7 +744,7 @@ body.trashing #publish-settings {
}
.customize-section-title {
margin: -12px -12px 0 -12px;
margin: -12px -12px 0;
border-bottom: 1px solid #dcdcde;
background: #fff;
}
......@@ -740,11 +767,11 @@ div.customize-section-description p:last-child {
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
border-bottom: 1px solid #dcdcde;
padding: 12px 12px 12px 12px;
padding: 12px;
}
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
padding: 12px 12px 13px 12px;
padding: 12px 12px 13px;
}
.customize-section-title h3,
......@@ -923,7 +950,8 @@ p.customize-section-description {
.customize-control input[type="number"],
.customize-control input[type="search"],
.customize-control input[type="tel"],
.customize-control input[type="url"] {
.customize-control input[type="url"],
.customize-control input[type="range"] {
width: 100%;
margin: 0;
}
......@@ -1114,7 +1142,7 @@ p.customize-section-description {
*/
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
margin: 4px 0 8px 0;
margin: 4px 0 8px;
padding: 0;
cursor: default;
}
......@@ -1127,7 +1155,7 @@ p.customize-section-description {
#customize-controls .customize-control-notifications-container li.notice {
list-style: none;
margin: 0 0 6px 0;
margin: 0 0 6px;
padding: 9px 14px;
overflow: hidden;
}
......@@ -1429,7 +1457,7 @@ p.customize-section-description {
}
.customize-control-header .header-view:last-child {
margin-bottom: 0px;
margin-bottom: 0;
}
/* Convoluted, but 'outline' support isn't good enough yet */
......@@ -1665,7 +1693,7 @@ p.customize-section-description {
border-bottom: 1px solid #dcdcde;
border-right: none;
border-left: none;
margin: 0 0 15px 0;
margin: 0 0 15px;
padding-left: 100px; /* Space for the button */
}
......@@ -1724,6 +1752,12 @@ p.customize-section-description {
z-index: 20;
}
@media (prefers-reduced-motion: reduce) {
.control-panel-themes .customize-themes-full-container {
transition: none;
}
}
@media screen and (min-width: 1670px) {
.control-panel-themes .customize-themes-full-container {
width: 82%;
......@@ -1861,7 +1895,7 @@ p.customize-section-description {
}
.control-panel-themes .customize-themes-notifications .notice {
margin: 0 0 25px 0;
margin: 0 0 25px;
}
.customize-themes-full-container .customize-themes-section {
......@@ -1875,7 +1909,7 @@ p.customize-section-description {
.control-section .customize-section-text-before {
padding: 0 15px 8px 0;
margin: 15px 0 0 0;
margin: 15px 0 0;
line-height: 16px;
border-bottom: 1px solid #dcdcde;
color: #50575e;
......@@ -2096,7 +2130,7 @@ p.customize-section-description {
position: relative;
right: 0;
width: 100%;
margin: 0 0 25px 0;
margin: 0 0 25px;
}
.filter-drawer {
top: 46px;
......@@ -2206,7 +2240,7 @@ p.customize-section-description {
width: 26px;
display: block;
line-height: 2.3;
padding: 0 8px 0 8px;
padding: 0 8px;
border-left: 1px solid #dcdcde;
}
......@@ -2367,7 +2401,7 @@ body.cheatin h1 {
color: #50575e;
font-size: 24px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 30px 0 0 0;
margin: 30px 0 0;
padding: 0 0 7px;
}
......
This diff could not be displayed because it is too large.
......@@ -105,6 +105,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
height: 100%;
}
@media (prefers-reduced-motion: reduce) {
#customize-sidebar-outer-content {
transition: none;
}
}
#customize-theme-controls .control-section-outer {
display: none !important;
}
......@@ -123,6 +129,12 @@ body:not(.ready) #customize-save-button-wrapper .save {
transition: left .18s;
}
@media (prefers-reduced-motion: reduce) {
.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content {
transition: none;
}
}
.customize-outer-pane-parent {
margin: 0;
}
......@@ -537,6 +549,13 @@ body.trashing #publish-settings {
.15s border-color ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
transition: none;
}
}
#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title {
color: #50575e;
background-color: #fff;
......@@ -635,6 +654,14 @@ body.trashing #publish-settings {
transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
@media (prefers-reduced-motion: reduce) {
#customize-info,
#customize-theme-controls .customize-pane-parent,
#customize-theme-controls .customize-pane-child {
transition: none;
}
}
#customize-theme-controls .customize-pane-child.skip-transition {
transition: none;
}
......@@ -716,7 +743,7 @@ body.trashing #publish-settings {
}
.customize-section-title {
margin: -12px -12px 0 -12px;
margin: -12px -12px 0;
border-bottom: 1px solid #dcdcde;
background: #fff;
}
......@@ -739,11 +766,11 @@ div.customize-section-description p:last-child {
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
border-bottom: 1px solid #dcdcde;
padding: 12px 12px 12px 12px;
padding: 12px;
}
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
padding: 12px 12px 13px 12px;
padding: 12px 12px 13px;
}
.customize-section-title h3,
......@@ -922,7 +949,8 @@ p.customize-section-description {
.customize-control input[type="number"],
.customize-control input[type="search"],
.customize-control input[type="tel"],
.customize-control input[type="url"] {
.customize-control input[type="url"],
.customize-control input[type="range"] {
width: 100%;
margin: 0;
}
......@@ -1113,7 +1141,7 @@ p.customize-section-description {
*/
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
margin: 4px 0 8px 0;
margin: 4px 0 8px;
padding: 0;
cursor: default;
}
......@@ -1126,7 +1154,7 @@ p.customize-section-description {
#customize-controls .customize-control-notifications-container li.notice {
list-style: none;
margin: 0 0 6px 0;
margin: 0 0 6px;
padding: 9px 14px;
overflow: hidden;
}
......@@ -1428,7 +1456,7 @@ p.customize-section-description {
}
.customize-control-header .header-view:last-child {
margin-bottom: 0px;
margin-bottom: 0;
}
/* Convoluted, but 'outline' support isn't good enough yet */
......@@ -1664,7 +1692,7 @@ p.customize-section-description {
border-bottom: 1px solid #dcdcde;
border-left: none;
border-right: none;
margin: 0 0 15px 0;
margin: 0 0 15px;
padding-right: 100px; /* Space for the button */
}
......@@ -1723,6 +1751,12 @@ p.customize-section-description {
z-index: 20;
}
@media (prefers-reduced-motion: reduce) {
.control-panel-themes .customize-themes-full-container {
transition: none;
}
}
@media screen and (min-width: 1670px) {
.control-panel-themes .customize-themes-full-container {
width: 82%;
......@@ -1860,7 +1894,7 @@ p.customize-section-description {
}
.control-panel-themes .customize-themes-notifications .notice {
margin: 0 0 25px 0;
margin: 0 0 25px;
}
.customize-themes-full-container .customize-themes-section {
......@@ -1874,7 +1908,7 @@ p.customize-section-description {
.control-section .customize-section-text-before {
padding: 0 0 8px 15px;
margin: 15px 0 0 0;
margin: 15px 0 0;
line-height: 16px;
border-bottom: 1px solid #dcdcde;
color: #50575e;
......@@ -2095,7 +2129,7 @@ p.customize-section-description {
position: relative;
left: 0;
width: 100%;
margin: 0 0 25px 0;
margin: 0 0 25px;
}
.filter-drawer {
top: 46px;
......@@ -2205,7 +2239,7 @@ p.customize-section-description {
width: 26px;
display: block;
line-height: 2.3;
padding: 0 8px 0 8px;
padding: 0 8px;
border-right: 1px solid #dcdcde;
}
......@@ -2366,7 +2400,7 @@ body.cheatin h1 {
color: #50575e;
font-size: 24px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 30px 0 0 0;
margin: 30px 0 0;
padding: 0 0 7px;
}
......
This diff could not be displayed because it is too large.
......@@ -12,7 +12,7 @@
#customize-theme-controls .customize-section-title-nav_menus-heading,
#customize-theme-controls .customize-section-title-menu_locations-heading,
#customize-theme-controls .customize-section-title-menu_locations-description {
padding: 0 12px 0 12px;
padding: 0 12px;
}
#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description {
......@@ -101,7 +101,7 @@
.wp-customizer .menu-item-settings .description-thin {
width: 100%;
height: auto;
margin: 0 0 8px 0;
margin: 0 0 8px;
}
.wp-customizer .menu-item-settings input[type="text"] {
......@@ -186,7 +186,7 @@
}
.wp-customizer .menu-settings dl {
margin: 12px 0 0 0;
margin: 12px 0 0;
padding: 0;
}
......@@ -323,7 +323,7 @@
#available-menu-items .accordion-section-title .toggle-indicator:before {
content: "\f140";
display: block;
padding: 1px 0px 1px 2px;
padding: 1px 0 1px 2px;
speak: never;
border-radius: 50%;
color: #787c82;
......@@ -582,8 +582,8 @@
}
#available-menu-items .accordion-section-content .available-menu-items-list {
margin: 0 0 45px 0;
padding: 1px 15px 15px 15px;
margin: 0 0 45px;
padding: 1px 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 */
......@@ -591,7 +591,7 @@
}
#new-custom-menu-item .accordion-section-content {
padding: 0 15px 15px 15px;
padding: 0 15px 15px;
}
#available-menu-items .menu-item-tpl {
......@@ -691,7 +691,7 @@
position: absolute;
right: 0;
top: 60px; /* below title div / search input */
bottom: 0px; /* 100% height that still triggers lazy load */
bottom: 0; /* 100% height that still triggers lazy load */
max-height: none;
width: 100%;
padding: 1px 15px 15px;
......@@ -796,7 +796,7 @@ body.adding-menu-items #customize-preview iframe {
#create-new-menu-submit {
float: left;
margin: 0 0 12px 0;
margin: 0 0 12px;
}
.menu-delete-item {
......@@ -806,7 +806,7 @@ body.adding-menu-items #customize-preview iframe {
}
.assigned-menu-locations-title p {
margin: 0 0 8px 0;
margin: 0 0 8px;
}
li.assigned-to-menu-location .menu-delete-item {
......
......@@ -11,7 +11,7 @@
#customize-theme-controls .customize-section-title-nav_menus-heading,
#customize-theme-controls .customize-section-title-menu_locations-heading,
#customize-theme-controls .customize-section-title-menu_locations-description {
padding: 0 12px 0 12px;
padding: 0 12px;
}
#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description {
......@@ -100,7 +100,7 @@
.wp-customizer .menu-item-settings .description-thin {
width: 100%;
height: auto;
margin: 0 0 8px 0;
margin: 0 0 8px;
}
.wp-customizer .menu-item-settings input[type="text"] {
......@@ -185,7 +185,7 @@
}
.wp-customizer .menu-settings dl {
margin: 12px 0 0 0;
margin: 12px 0 0;
padding: 0;
}
......@@ -322,7 +322,7 @@
#available-menu-items .accordion-section-title .toggle-indicator:before {
content: "\f140";
display: block;
padding: 1px 2px 1px 0px;
padding: 1px 2px 1px 0;
speak: never;
border-radius: 50%;
color: #787c82;
......@@ -581,8 +581,8 @@
}
#available-menu-items .accordion-section-content .available-menu-items-list {
margin: 0 0 45px 0;
padding: 1px 15px 15px 15px;
margin: 0 0 45px;
padding: 1px 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 */
......@@ -590,7 +590,7 @@
}
#new-custom-menu-item .accordion-section-content {
padding: 0 15px 15px 15px;
padding: 0 15px 15px;
}
#available-menu-items .menu-item-tpl {
......@@ -690,7 +690,7 @@
position: absolute;
left: 0;
top: 60px; /* below title div / search input */
bottom: 0px; /* 100% height that still triggers lazy load */
bottom: 0; /* 100% height that still triggers lazy load */
max-height: none;
width: 100%;
padding: 1px 15px 15px;
......@@ -795,7 +795,7 @@ body.adding-menu-items #customize-preview iframe {
#create-new-menu-submit {
float: right;
margin: 0 0 12px 0;
margin: 0 0 12px;
}
.menu-delete-item {
......@@ -805,7 +805,7 @@ body.adding-menu-items #customize-preview iframe {
}
.assigned-menu-locations-title p {
margin: 0 0 8px 0;
margin: 0 0 8px;
}
li.assigned-to-menu-location .menu-delete-item {
......
......@@ -82,7 +82,7 @@
}
.widget-inside {
padding: 1px 10px 10px 10px;
padding: 1px 10px 10px;
border-top: none;
line-height: 1.23076923;
}
......
......@@ -81,7 +81,7 @@
}
.widget-inside {
padding: 1px 10px 10px 10px;
padding: 1px 10px 10px;
border-top: none;
line-height: 1.23076923;
}
......
......@@ -101,7 +101,7 @@ th {
width: 100%;
border: none;
text-align: justify;
margin: 0 0 1em 0;
margin: 0 0 1em;
padding: 0;
}
......
......@@ -100,7 +100,7 @@ th {
width: 100%;
border: none;
text-align: justify;
margin: 0 0 1em 0;
margin: 0 0 1em;
padding: 0;
}
......
......@@ -147,6 +147,11 @@ body.post-new-php .submitbox .submitdelete {
margin-top: 3px;
}
body.post-type-wp_navigation div#minor-publishing,
body.post-type-wp_navigation .inline-edit-status {
display: none;
}
/* Post Screen */
/* Only highlight drop zones when dragging and only in the 2 columns layout. */
......@@ -451,7 +456,7 @@ form#tags-filter {
}
.curtime #timestamp {
padding: 2px 0 1px 0;
padding: 2px 0 1px;
display: inline !important;
height: auto !important;
}
......@@ -651,7 +656,7 @@ form#tags-filter {
}
#poststuff .inside {
margin: 6px 0 0 0;
margin: 6px 0 0;
}
.link-php #poststuff .inside,
......@@ -722,7 +727,7 @@ form#tags-filter {
font-weight: 600;
margin: 0 0.8rem 1rem;
font-size: 23px;
padding: 9px 0 4px 0;
padding: 9px 0 4px;
line-height: 1.3;
}
......@@ -1364,7 +1369,7 @@ p.description code {
}
#poststuff .tagsdiv .howto {
margin: 1em 0 6px 0;
margin: 1em 0 6px;
}
.ajaxtag .newtag {
......@@ -1773,7 +1778,7 @@ table.links-table {
}
#titlediv #title-prompt-text {
padding: 10px 10px;
padding: 10px;
}
#poststuff .stuffbox .inside {
......@@ -1956,7 +1961,7 @@ table.links-table {
}
.misc-pub-section {
padding: 20px 10px 20px;
padding: 20px 10px;
}
.misc-pub-section > a {
......
......@@ -146,6 +146,11 @@ body.post-new-php .submitbox .submitdelete {
margin-top: 3px;
}
body.post-type-wp_navigation div#minor-publishing,
body.post-type-wp_navigation .inline-edit-status {
display: none;
}
/* Post Screen */
/* Only highlight drop zones when dragging and only in the 2 columns layout. */
......@@ -450,7 +455,7 @@ form#tags-filter {
}
.curtime #timestamp {
padding: 2px 0 1px 0;
padding: 2px 0 1px;
display: inline !important;
height: auto !important;
}
......@@ -650,7 +655,7 @@ form#tags-filter {
}
#poststuff .inside {
margin: 6px 0 0 0;
margin: 6px 0 0;
}
.link-php #poststuff .inside,
......@@ -721,7 +726,7 @@ form#tags-filter {
font-weight: 600;
margin: 0 0.8rem 1rem;
font-size: 23px;
padding: 9px 0 4px 0;
padding: 9px 0 4px;
line-height: 1.3;
}
......@@ -1363,7 +1368,7 @@ p.description code {
}
#poststuff .tagsdiv .howto {
margin: 1em 0 6px 0;
margin: 1em 0 6px;
}
.ajaxtag .newtag {
......@@ -1772,7 +1777,7 @@ table.links-table {
}
#titlediv #title-prompt-text {
padding: 10px 10px;
padding: 10px;
}
#poststuff .stuffbox .inside {
......@@ -1955,7 +1960,7 @@ table.links-table {
}
.misc-pub-section {
padding: 20px 10px 20px;
padding: 20px 10px;
}
.misc-pub-section > a {
......
......@@ -33,7 +33,7 @@ select {
}
textarea.code {
padding: 4px 6px 1px 6px;
padding: 4px 6px 1px;
}
input[type="text"],
......@@ -1000,8 +1000,8 @@ table.form-table td .updated p {
.pressthis-bookmarklet span {
display: inline-block;
margin: 0px 0 0;
padding: 0px 9px 8px 12px;
margin: 0;
padding: 0 9px 8px 12px;
}
.pressthis-bookmarklet span:before {
......@@ -1226,7 +1226,7 @@ table.form-table td .updated p {
}
.request-filesystem-credentials-form .notice {
margin: 0 0 20px 0;
margin: 0 0 20px;
clear: both;
}
......@@ -1237,11 +1237,14 @@ table.form-table td .updated p {
margin-bottom: 1.3em;
}
.tools-privacy-policy-page input.button,
.tools-privacy-policy-page select {
.tools-privacy-policy-page input.button {
margin: 0 6px 0 1px;
}
.tools-privacy-policy-page select {
margin: 0 6px 0.5em 1px;
}
.tools-privacy-edit {
margin: 1.5em 0;
}
......@@ -1560,13 +1563,13 @@ table.form-table td .updated p {
}
.form-table th {
padding: 10px 0 0 0;
padding: 10px 0 0;
border-bottom: 0;
}
.form-table td {
margin-bottom: 0;
padding: 4px 0 6px 0;
padding: 4px 0 6px;
}
.form-table.permalink-structure td code {
......
......@@ -32,7 +32,7 @@ select {
}
textarea.code {
padding: 4px 6px 1px 6px;
padding: 4px 6px 1px;
}
input[type="text"],
......@@ -999,8 +999,8 @@ table.form-table td .updated p {
.pressthis-bookmarklet span {
display: inline-block;
margin: 0px 0 0;
padding: 0px 12px 8px 9px;
margin: 0;
padding: 0 12px 8px 9px;
}
.pressthis-bookmarklet span:before {
......@@ -1225,7 +1225,7 @@ table.form-table td .updated p {
}
.request-filesystem-credentials-form .notice {
margin: 0 0 20px 0;
margin: 0 0 20px;
clear: both;
}
......@@ -1236,11 +1236,14 @@ table.form-table td .updated p {
margin-bottom: 1.3em;
}
.tools-privacy-policy-page input.button,
.tools-privacy-policy-page select {
.tools-privacy-policy-page input.button {
margin: 0 1px 0 6px;
}
.tools-privacy-policy-page select {
margin: 0 1px 0.5em 6px;
}
.tools-privacy-edit {
margin: 1.5em 0;
}
......@@ -1559,13 +1562,13 @@ table.form-table td .updated p {
}
.form-table th {
padding: 10px 0 0 0;
padding: 10px 0 0;
border-bottom: 0;
}
.form-table td {
margin-bottom: 0;
padding: 4px 0 6px 0;
padding: 4px 0 6px;
}
.form-table.permalink-structure td code {
......
......@@ -10,7 +10,7 @@ body {
color: #3c434a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 140px auto 25px;
padding: 20px 20px 10px 20px;
padding: 20px 20px 10px;
max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
......@@ -79,7 +79,7 @@ label {
#logo {
margin: -130px auto 25px;
padding: 0 0 25px 0;
padding: 0 0 25px;
width: 84px;
height: 84px;
overflow: hidden;
......@@ -142,7 +142,7 @@ textarea {
}
.form-table p {
margin: 4px 0 0 0;
margin: 4px 0 0;
font-size: 11px;
}
......
/*! This file is auto-generated */
html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px 20px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px 0;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:10px 0 10px 20px;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 0 16px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-right:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-left:50px}.wp-pwd .button.wp-hide-pw{left:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:left}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-left:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}
\ No newline at end of file
html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:10px 0 10px 20px;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 0 16px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-right:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-left:50px}.wp-pwd .button.wp-hide-pw{left:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:left}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-left:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}
\ No newline at end of file
......
......@@ -9,7 +9,7 @@ body {
color: #3c434a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 140px auto 25px;
padding: 20px 20px 10px 20px;
padding: 20px 20px 10px;
max-width: 700px;
-webkit-font-smoothing: subpixel-antialiased;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
......@@ -78,7 +78,7 @@ label {
#logo {
margin: -130px auto 25px;
padding: 0 0 25px 0;
padding: 0 0 25px;
width: 84px;
height: 84px;
overflow: hidden;
......@@ -141,7 +141,7 @@ textarea {
}
.form-table p {
margin: 4px 0 0 0;
margin: 4px 0 0;
font-size: 11px;
}
......
/*! This file is auto-generated */
html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px 20px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px 0;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}
\ No newline at end of file
html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}
\ No newline at end of file
......
......@@ -798,7 +798,7 @@ p.pagenav {
}
.row-actions {
color: #dcdcde;
color: #a7aaad;
font-size: 13px;
padding: 2px 0 0;
position: relative;
......@@ -1255,6 +1255,11 @@ ul.cat-checklist {
padding: 0 0 5px;
}
.plugins .row-actions {
white-space: normal;
min-width: 12em;
}
.plugins .update .second,
.plugins .update .row-actions,
.plugins .updated .second,
......@@ -1553,7 +1558,7 @@ div.action-links,
}
.plugin-card .notice {
margin: 20px 20px 0 20px;
margin: 20px 20px 0;
}
.plugin-icon {
......@@ -1644,7 +1649,7 @@ div.action-links,
}
.tablenav.top {
margin: 20px 0 5px 0;
margin: 20px 0 5px;
}
.tablenav.bottom {
......
......@@ -797,7 +797,7 @@ p.pagenav {
}
.row-actions {
color: #dcdcde;
color: #a7aaad;
font-size: 13px;
padding: 2px 0 0;
position: relative;
......@@ -1254,6 +1254,11 @@ ul.cat-checklist {
padding: 0 0 5px;
}
.plugins .row-actions {
white-space: normal;
min-width: 12em;
}
.plugins .update .second,
.plugins .update .row-actions,
.plugins .updated .second,
......@@ -1552,7 +1557,7 @@ div.action-links,
}
.plugin-card .notice {
margin: 20px 20px 0 20px;
margin: 20px 20px 0;
}
.plugin-icon {
......@@ -1643,7 +1648,7 @@ div.action-links,
}
.tablenav.top {
margin: 20px 0 5px 0;
margin: 20px 0 5px;
}
.tablenav.bottom {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.