wp update
Signed-off-by: Jeff <jeff@gotenzing.com>
Showing
1000 changed files
with
1359 additions
and
863 deletions
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
| ... | @@ -51,14 +51,14 @@ | ... | @@ -51,14 +51,14 @@ |
| 51 | 51 | ||
| 52 | <h2>System Requirements</h2> | 52 | <h2>System Requirements</h2> |
| 53 | <ul> | 53 | <ul> |
| 54 | <li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or greater.</li> | 54 | <li><a href="https://secure.php.net/">PHP</a> version <strong>7.0</strong> or greater.</li> |
| 55 | <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or greater.</li> | 55 | <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or greater.</li> |
| 56 | </ul> | 56 | </ul> |
| 57 | 57 | ||
| 58 | <h3>Recommendations</h3> | 58 | <h3>Recommendations</h3> |
| 59 | <ul> | 59 | <ul> |
| 60 | <li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li> | 60 | <li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li> |
| 61 | <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.3</strong> or greater.</li> | 61 | <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.4</strong> or greater.</li> |
| 62 | <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li> | 62 | <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li> |
| 63 | <li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li> | 63 | <li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li> |
| 64 | <li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li> | 64 | <li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li> | ... | ... |
| ... | @@ -87,7 +87,7 @@ do_action( 'activate_header' ); | ... | @@ -87,7 +87,7 @@ do_action( 'activate_header' ); |
| 87 | */ | 87 | */ |
| 88 | function do_activate_header() { | 88 | function do_activate_header() { |
| 89 | /** | 89 | /** |
| 90 | * Fires before the Site Activation page is loaded. | 90 | * Fires within the `<head>` section of the Site Activation page. |
| 91 | * | 91 | * |
| 92 | * Fires on the {@see 'wp_head'} action. | 92 | * Fires on the {@see 'wp_head'} action. |
| 93 | * | 93 | * |
| ... | @@ -120,7 +120,7 @@ add_filter( 'wp_robots', 'wp_robots_sensitive_page' ); | ... | @@ -120,7 +120,7 @@ add_filter( 'wp_robots', 'wp_robots_sensitive_page' ); |
| 120 | 120 | ||
| 121 | get_header( 'wp-activate' ); | 121 | get_header( 'wp-activate' ); |
| 122 | 122 | ||
| 123 | $blog_details = get_blog_details(); | 123 | $blog_details = get_site(); |
| 124 | ?> | 124 | ?> |
| 125 | 125 | ||
| 126 | <div id="signup-content" class="widecolumn"> | 126 | <div id="signup-content" class="widecolumn"> | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -109,7 +109,7 @@ var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ? | ... | @@ -109,7 +109,7 @@ var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ? |
| 109 | <?php | 109 | <?php |
| 110 | 110 | ||
| 111 | /** | 111 | /** |
| 112 | * Enqueue scripts for all admin pages. | 112 | * Fires when enqueuing scripts for all admin pages. |
| 113 | * | 113 | * |
| 114 | * @since 2.8.0 | 114 | * @since 2.8.0 |
| 115 | * | 115 | * |
| ... | @@ -242,7 +242,7 @@ unset( $error_get_last ); | ... | @@ -242,7 +242,7 @@ unset( $error_get_last ); |
| 242 | $admin_body_classes = apply_filters( 'admin_body_class', '' ); | 242 | $admin_body_classes = apply_filters( 'admin_body_class', '' ); |
| 243 | $admin_body_classes = ltrim( $admin_body_classes . ' ' . $admin_body_class ); | 243 | $admin_body_classes = ltrim( $admin_body_classes . ' ' . $admin_body_class ); |
| 244 | ?> | 244 | ?> |
| 245 | <body class="wp-admin wp-core-ui no-js <?php echo $admin_body_classes; ?>"> | 245 | <body class="wp-admin wp-core-ui no-js <?php echo esc_attr( $admin_body_classes ); ?>"> |
| 246 | <script type="text/javascript"> | 246 | <script type="text/javascript"> |
| 247 | document.body.className = document.body.className.replace('no-js','js'); | 247 | document.body.className = document.body.className.replace('no-js','js'); |
| 248 | </script> | 248 | </script> | ... | ... |
| ... | @@ -348,7 +348,7 @@ if ( isset( $plugin_page ) ) { | ... | @@ -348,7 +348,7 @@ if ( isset( $plugin_page ) ) { |
| 348 | define( 'WP_IMPORTING', true ); | 348 | define( 'WP_IMPORTING', true ); |
| 349 | 349 | ||
| 350 | /** | 350 | /** |
| 351 | * Whether to filter imported data through kses on import. | 351 | * Filters whether to filter imported data through kses on import. |
| 352 | * | 352 | * |
| 353 | * Multisite uses this hook to filter all data through kses by default, | 353 | * Multisite uses this hook to filter all data through kses by default, |
| 354 | * as a super administrator may be assisting an untrusted user. | 354 | * as a super administrator may be assisting an untrusted user. | ... | ... |
| ... | @@ -113,8 +113,8 @@ if ( isset( $_REQUEST['post_id'] ) ) { | ... | @@ -113,8 +113,8 @@ if ( isset( $_REQUEST['post_id'] ) ) { |
| 113 | 113 | ||
| 114 | $id = media_handle_upload( 'async-upload', $post_id ); | 114 | $id = media_handle_upload( 'async-upload', $post_id ); |
| 115 | if ( is_wp_error( $id ) ) { | 115 | if ( is_wp_error( $id ) ) { |
| 116 | printf( | 116 | $message = sprintf( |
| 117 | '<div class="error-div error">%s <strong>%s</strong><br />%s</div>', | 117 | '%s <strong>%s</strong><br />%s', |
| 118 | sprintf( | 118 | sprintf( |
| 119 | '<button type="button" class="dismiss button-link" onclick="jQuery(this).parents(\'div.media-item\').slideUp(200, function(){jQuery(this).remove();});">%s</button>', | 119 | '<button type="button" class="dismiss button-link" onclick="jQuery(this).parents(\'div.media-item\').slideUp(200, function(){jQuery(this).remove();});">%s</button>', |
| 120 | __( 'Dismiss' ) | 120 | __( 'Dismiss' ) |
| ... | @@ -126,6 +126,13 @@ if ( is_wp_error( $id ) ) { | ... | @@ -126,6 +126,13 @@ if ( is_wp_error( $id ) ) { |
| 126 | ), | 126 | ), |
| 127 | esc_html( $id->get_error_message() ) | 127 | esc_html( $id->get_error_message() ) |
| 128 | ); | 128 | ); |
| 129 | wp_admin_notice( | ||
| 130 | $message, | ||
| 131 | array( | ||
| 132 | 'additional_classes' => array( 'error-div', 'error' ), | ||
| 133 | 'paragraph_wrap' => false, | ||
| 134 | ) | ||
| 135 | ); | ||
| 129 | exit; | 136 | exit; |
| 130 | } | 137 | } |
| 131 | 138 | ... | ... |
| ... | @@ -137,9 +137,16 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -137,9 +137,16 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 137 | <div class="wrap"> | 137 | <div class="wrap"> |
| 138 | <h1><?php echo esc_html( $title ); ?></h1> | 138 | <h1><?php echo esc_html( $title ); ?></h1> |
| 139 | 139 | ||
| 140 | <?php if ( is_wp_error( $error ) ) : ?> | 140 | <?php |
| 141 | <div class="notice notice-error"><p><?php echo $error->get_error_message(); ?></p></div> | 141 | if ( is_wp_error( $error ) ) { |
| 142 | <?php endif; ?> | 142 | wp_admin_notice( |
| 143 | $error->get_error_message(), | ||
| 144 | array( | ||
| 145 | 'type' => 'error', | ||
| 146 | ) | ||
| 147 | ); | ||
| 148 | } | ||
| 149 | ?> | ||
| 143 | 150 | ||
| 144 | <div class="card auth-app-card"> | 151 | <div class="card auth-app-card"> |
| 145 | <h2 class="title"><?php _e( 'An application would like to connect to your account.' ); ?></h2> | 152 | <h2 class="title"><?php _e( 'An application would like to connect to your account.' ); ?></h2> |
| ... | @@ -194,24 +201,25 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -194,24 +201,25 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 194 | } | 201 | } |
| 195 | ?> | 202 | ?> |
| 196 | 203 | ||
| 197 | <?php if ( $new_password ) : ?> | 204 | <?php |
| 198 | <div class="notice notice-success notice-alt below-h2"> | 205 | if ( $new_password ) : |
| 199 | <p class="application-password-display"> | 206 | $message = '<p class="application-password-display"> |
| 200 | <label for="new-application-password-value"> | 207 | <label for="new-application-password-value">' . sprintf( |
| 201 | <?php | 208 | /* translators: %s: Application name. */ |
| 202 | printf( | 209 | esc_html__( 'Your new password for %s is:' ), |
| 203 | /* translators: %s: Application name. */ | 210 | '<strong>' . esc_html( $app_name ) . '</strong>' |
| 204 | esc_html__( 'Your new password for %s is:' ), | 211 | ) . ' |
| 205 | '<strong>' . esc_html( $app_name ) . '</strong>' | 212 | </label> |
| 206 | ); | 213 | <input id="new-application-password-value" type="text" class="code" readonly="readonly" value="' . esc_attr( WP_Application_Passwords::chunk_password( $new_password ) ) . '" /> |
| 207 | ?> | 214 | </p> |
| 208 | </label> | 215 | <p>' . __( 'Be sure to save this in a safe location. You will not be able to retrieve it.' ) . '</p>'; |
| 209 | <input id="new-application-password-value" type="text" class="code" readonly="readonly" value="<?php esc_attr( WP_Application_Passwords::chunk_password( $new_password ) ); ?>" /> | 216 | $args = array( |
| 210 | </p> | 217 | 'type' => 'success', |
| 211 | <p><?php _e( 'Be sure to save this in a safe location. You will not be able to retrieve it.' ); ?></p> | 218 | 'additional_classes' => array( 'notice-alt', 'below-h2' ), |
| 212 | </div> | 219 | 'paragraph_wrap' => false, |
| 220 | ); | ||
| 221 | wp_admin_notice( $message, $args ); | ||
| 213 | 222 | ||
| 214 | <?php | ||
| 215 | /** | 223 | /** |
| 216 | * Fires in the Authorize Application Password new password section in the no-JS version. | 224 | * Fires in the Authorize Application Password new password section in the no-JS version. |
| 217 | * | 225 | * |
| ... | @@ -226,8 +234,8 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -226,8 +234,8 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 226 | * @param WP_User $user The user authorizing the application. | 234 | * @param WP_User $user The user authorizing the application. |
| 227 | */ | 235 | */ |
| 228 | do_action( 'wp_authorize_application_password_form_approved_no_js', $new_password, $request, $user ); | 236 | do_action( 'wp_authorize_application_password_form_approved_no_js', $new_password, $request, $user ); |
| 237 | else : | ||
| 229 | ?> | 238 | ?> |
| 230 | <?php else : ?> | ||
| 231 | <form action="<?php echo esc_url( admin_url( 'authorize-application.php' ) ); ?>" method="post" class="form-wrap"> | 239 | <form action="<?php echo esc_url( admin_url( 'authorize-application.php' ) ); ?>" method="post" class="form-wrap"> |
| 232 | <?php wp_nonce_field( 'authorize_application_password' ); ?> | 240 | <?php wp_nonce_field( 'authorize_application_password' ); ?> |
| 233 | <input type="hidden" name="action" value="authorize_application_password" /> | 241 | <input type="hidden" name="action" value="authorize_application_password" /> | ... | ... |
| ... | @@ -161,11 +161,23 @@ switch ( $action ) { | ... | @@ -161,11 +161,23 @@ switch ( $action ) { |
| 161 | break; | 161 | break; |
| 162 | } | 162 | } |
| 163 | if ( $message ) { | 163 | if ( $message ) { |
| 164 | echo '<div id="message" class="notice notice-info"><p>' . $message . '</p></div>'; | 164 | wp_admin_notice( |
| 165 | $message, | ||
| 166 | array( | ||
| 167 | 'type' => 'info', | ||
| 168 | 'id' => 'message', | ||
| 169 | ) | ||
| 170 | ); | ||
| 165 | } | 171 | } |
| 166 | } | 172 | } |
| 173 | wp_admin_notice( | ||
| 174 | '<strong>' . __( 'Caution:' ) . '</strong> ' . $caution_msg, | ||
| 175 | array( | ||
| 176 | 'type' => 'warning', | ||
| 177 | 'id' => 'message', | ||
| 178 | ) | ||
| 179 | ); | ||
| 167 | ?> | 180 | ?> |
| 168 | <div id="message" class="notice notice-warning"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php echo $caution_msg; ?></p></div> | ||
| 169 | 181 | ||
| 170 | <table class="form-table comment-ays"> | 182 | <table class="form-table comment-ays"> |
| 171 | <tr> | 183 | <tr> |
| ... | @@ -282,7 +294,7 @@ switch ( $action ) { | ... | @@ -282,7 +294,7 @@ switch ( $action ) { |
| 282 | comment_footer_die( __( 'Sorry, you are not allowed to edit comments on this post.' ) ); | 294 | comment_footer_die( __( 'Sorry, you are not allowed to edit comments on this post.' ) ); |
| 283 | } | 295 | } |
| 284 | 296 | ||
| 285 | if ( wp_get_referer() && ! $noredir && false === strpos( wp_get_referer(), 'comment.php' ) ) { | 297 | if ( wp_get_referer() && ! $noredir && ! str_contains( wp_get_referer(), 'comment.php' ) ) { |
| 286 | $redir = wp_get_referer(); | 298 | $redir = wp_get_referer(); |
| 287 | } elseif ( wp_get_original_referer() && ! $noredir ) { | 299 | } elseif ( wp_get_original_referer() && ! $noredir ) { |
| 288 | $redir = wp_get_original_referer(); | 300 | $redir = wp_get_original_referer(); | ... | ... |
wp-admin/contribute.php
0 → 100644
| 1 | <?php | ||
| 2 | /** | ||
| 3 | * Contribute administration panel. | ||
| 4 | * | ||
| 5 | * @package WordPress | ||
| 6 | * @subpackage Administration | ||
| 7 | */ | ||
| 8 | |||
| 9 | /** WordPress Administration Bootstrap */ | ||
| 10 | require_once __DIR__ . '/admin.php'; | ||
| 11 | |||
| 12 | // Used in the HTML title tag. | ||
| 13 | $title = __( 'Get Involved' ); | ||
| 14 | |||
| 15 | list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); | ||
| 16 | |||
| 17 | require_once ABSPATH . 'wp-admin/admin-header.php'; | ||
| 18 | ?> | ||
| 19 | <div class="wrap about__container"> | ||
| 20 | |||
| 21 | <div class="about__header"> | ||
| 22 | <div class="about__header-title"> | ||
| 23 | <h1> | ||
| 24 | <?php _e( 'Get Involved' ); ?> | ||
| 25 | </h1> | ||
| 26 | </div> | ||
| 27 | |||
| 28 | <div class="about__header-text"></div> | ||
| 29 | </div> | ||
| 30 | |||
| 31 | <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> | ||
| 32 | <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> | ||
| 33 | <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> | ||
| 34 | <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> | ||
| 35 | <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> | ||
| 36 | <a href="contribute.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Get Involved' ); ?></a> | ||
| 37 | </nav> | ||
| 38 | |||
| 39 | <div class="about__section has-2-columns is-wider-right"> | ||
| 40 | <div class="column"> | ||
| 41 | <img src="<?php echo esc_url( admin_url( 'images/contribute-main.svg?ver=6.4' ) ); ?>" alt="" width="290" height="290" /> | ||
| 42 | </div> | ||
| 43 | <div class="column is-vertically-aligned-center"> | ||
| 44 | <p><?php _e( 'Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.' ); ?></p> | ||
| 45 | <p><?php _e( 'Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.' ); ?></p> | ||
| 46 | |||
| 47 | <ul> | ||
| 48 | <li><?php _e( 'Be part of a global open source community.' ); ?></li> | ||
| 49 | <li><?php _e( 'Apply your skills or learn new ones.' ); ?></li> | ||
| 50 | <li><?php _e( 'Grow your network and make friends.' ); ?></li> | ||
| 51 | </ul> | ||
| 52 | </div> | ||
| 53 | </div> | ||
| 54 | |||
| 55 | <div class="about__section has-2-columns is-wider-left"> | ||
| 56 | <div class="column is-vertically-aligned-center"> | ||
| 57 | <h3><?php _e( 'No-code contribution' ); ?></h3> | ||
| 58 | <p><?php _e( 'WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:' ); ?></p> | ||
| 59 | <ul> | ||
| 60 | <li><?php _e( '<strong>Share</strong> your knowledge in the WordPress support forums.' ); ?></li> | ||
| 61 | <li><?php _e( '<strong>Write</strong> or improve documentation for WordPress.' ); ?></li> | ||
| 62 | <li><?php _e( '<strong>Translate</strong> WordPress into your local language.' ); ?></li> | ||
| 63 | <li><?php _e( '<strong>Create</strong> and improve WordPress educational materials.' ); ?></li> | ||
| 64 | <li><?php _e( '<strong>Promote</strong> the WordPress project to your community.' ); ?></li> | ||
| 65 | <li><?php _e( '<strong>Curate</strong> submissions or take photos for the Photo Directory.' ); ?></li> | ||
| 66 | <li><?php _e( '<strong>Organize</strong> or participate in local Meetups and WordCamps.' ); ?></li> | ||
| 67 | <li><?php _e( '<strong>Lend</strong> your creative imagination to the WordPress UI design.' ); ?></li> | ||
| 68 | <li><?php _e( '<strong>Edit</strong> videos and add captions to WordPress.tv.' ); ?></li> | ||
| 69 | <li><?php _e( '<strong>Explore</strong> ways to reduce the environmental impact of websites.' ); ?></li> | ||
| 70 | </ul> | ||
| 71 | </div> | ||
| 72 | <div class="column"> | ||
| 73 | <img src="<?php echo esc_url( admin_url( 'images/contribute-no-code.svg?ver=6.4' ) ); ?>" alt="" width="290" height="290" /> | ||
| 74 | </div> | ||
| 75 | </div> | ||
| 76 | <div class="about__section has-2-columns is-wider-right"> | ||
| 77 | <div class="column"> | ||
| 78 | <img src="<?php echo esc_url( admin_url( 'images/contribute-code.svg?ver=6.4' ) ); ?>" alt="" width="290" height="290" /> | ||
| 79 | </div> | ||
| 80 | <div class="column is-vertically-aligned-center"> | ||
| 81 | <h3><?php _e( 'Code-based contribution' ); ?></h3> | ||
| 82 | <p><?php _e( 'If you do code, or want to learn how, you can contribute technically in numerous ways:' ); ?></p> | ||
| 83 | <ul> | ||
| 84 | <li><?php _e( '<strong>Find</strong> and report bugs in the WordPress core software.' ); ?></li> | ||
| 85 | <li><?php _e( '<strong>Test</strong> new releases and proposed features for the Block Editor.' ); ?></li> | ||
| 86 | <li><?php _e( '<strong>Write</strong> and submit patches to fix bugs or help build new features.' ); ?></li> | ||
| 87 | <li><?php _e( '<strong>Contribute</strong> to the code, improve the UX, and test the WordPress app.' ); ?></li> | ||
| 88 | </ul> | ||
| 89 | <p><?php _e( 'WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:' ); ?></p> | ||
| 90 | <ul> | ||
| 91 | <li><?php _e( 'WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.' ); ?></li> | ||
| 92 | <li><?php _e( 'WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.' ); ?></li> | ||
| 93 | </ul> | ||
| 94 | </div> | ||
| 95 | </div> | ||
| 96 | |||
| 97 | <div class="about__section is-feature has-accent-4-background-color"> | ||
| 98 | <div class="column"> | ||
| 99 | <h2><?php _e( 'Shape the future of the web with WordPress' ); ?></h2> | ||
| 100 | <p><?php _e( 'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.' ); ?></p> | ||
| 101 | <p><a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Find your team →' ); ?></a></p> | ||
| 102 | </div> | ||
| 103 | </div> | ||
| 104 | |||
| 105 | </div> | ||
| 106 | <?php | ||
| 107 | require_once ABSPATH . 'wp-admin/admin-footer.php'; |
| ... | @@ -28,15 +28,7 @@ $credits = wp_credits(); | ... | @@ -28,15 +28,7 @@ $credits = wp_credits(); |
| 28 | </h1> | 28 | </h1> |
| 29 | </div> | 29 | </div> |
| 30 | 30 | ||
| 31 | <div class="about__header-text"> | 31 | <div class="about__header-text"></div> |
| 32 | <?php | ||
| 33 | printf( | ||
| 34 | /* translators: %s: Version number. */ | ||
| 35 | __( 'WordPress %s was created by a worldwide team of passionate individuals' ), | ||
| 36 | $display_version | ||
| 37 | ); | ||
| 38 | ?> | ||
| 39 | </div> | ||
| 40 | </div> | 32 | </div> |
| 41 | 33 | ||
| 42 | <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> | 34 | <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
| ... | @@ -44,6 +36,7 @@ $credits = wp_credits(); | ... | @@ -44,6 +36,7 @@ $credits = wp_credits(); |
| 44 | <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> | 36 | <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> |
| 45 | <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> | 37 | <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> |
| 46 | <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> | 38 | <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> |
| 39 | <a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a> | ||
| 47 | </nav> | 40 | </nav> |
| 48 | 41 | ||
| 49 | <div class="about__section has-1-column has-gutters"> | 42 | <div class="about__section has-1-column has-gutters"> |
| ... | @@ -59,7 +52,7 @@ $credits = wp_credits(); | ... | @@ -59,7 +52,7 @@ $credits = wp_credits(); |
| 59 | ); | 52 | ); |
| 60 | ?> | 53 | ?> |
| 61 | <br /> | 54 | <br /> |
| 62 | <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a> | 55 | <a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Get involved in WordPress.' ); ?></a> |
| 63 | </p> | 56 | </p> |
| 64 | 57 | ||
| 65 | <?php else : ?> | 58 | <?php else : ?> |
| ... | @@ -67,7 +60,7 @@ $credits = wp_credits(); | ... | @@ -67,7 +60,7 @@ $credits = wp_credits(); |
| 67 | <p> | 60 | <p> |
| 68 | <?php _e( 'Want to see your name in lights on this page?' ); ?> | 61 | <?php _e( 'Want to see your name in lights on this page?' ); ?> |
| 69 | <br /> | 62 | <br /> |
| 70 | <a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a> | 63 | <a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Get involved in WordPress.' ); ?></a> |
| 71 | </p> | 64 | </p> |
| 72 | 65 | ||
| 73 | <?php endif; ?> | 66 | <?php endif; ?> | ... | ... |
| ... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
| 2 | /*------------------------------------------------------------------------------ | 2 | /*------------------------------------------------------------------------------ |
| 3 | 22.0 - About Pages | 3 | 22.0 - About Pages |
| 4 | 4 | ||
| 5 | 1.0 Global: About, Credits, Freedoms, Privacy | 5 | 1.0 Global: About, Credits, Freedoms, Privacy, Get Involved |
| 6 | 1.1 Layout | 6 | 1.1 Layout |
| 7 | 1.2 Typography & Elements | 7 | 1.2 Typography & Elements |
| 8 | 1.3 Header | 8 | 1.3 Header |
| ... | @@ -22,16 +22,18 @@ | ... | @@ -22,16 +22,18 @@ |
| 22 | 22 | ||
| 23 | .about__container { | 23 | .about__container { |
| 24 | /* Section backgrounds */ | 24 | /* Section backgrounds */ |
| 25 | --background: #1d35b4; | 25 | --background: #EAE9E7; |
| 26 | --subtle-background: #eff2ff; | 26 | --subtle-background: #EAE9E7; |
| 27 | 27 | ||
| 28 | /* Main text color */ | 28 | /* Main text color */ |
| 29 | --text: #000; | 29 | --text: #1e1e1e; |
| 30 | --text-light: #fff; | 30 | --text-light: #fff; |
| 31 | 31 | ||
| 32 | /* Accent colors: used in header, on special classes. */ | 32 | /* Accent colors: used in header, on special classes. */ |
| 33 | --accent-1: #1d35b4; /* Link color, credit image overlay */ | 33 | --accent-1: #C94C26; /* Link color */ |
| 34 | --accent-2: #33f078; /* Accent background */ | 34 | --accent-2: #CFCABE; /* Accent background */ |
| 35 | --accent-3: #f0f0f1; /* hr background */ | ||
| 36 | --accent-4: #B1C5A4; /* Light green */ | ||
| 35 | 37 | ||
| 36 | /* Navigation colors. */ | 38 | /* Navigation colors. */ |
| 37 | --nav-background: #fff; | 39 | --nav-background: #fff; |
| ... | @@ -43,20 +45,22 @@ | ... | @@ -43,20 +45,22 @@ |
| 43 | } | 45 | } |
| 44 | 46 | ||
| 45 | /*------------------------------------------------------------------------------ | 47 | /*------------------------------------------------------------------------------ |
| 46 | 1.0 - Global: About, Credits, Freedoms, Privacy | 48 | 1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved |
| 47 | ------------------------------------------------------------------------------*/ | 49 | ------------------------------------------------------------------------------*/ |
| 48 | 50 | ||
| 49 | .about-php, | 51 | .about-php, |
| 50 | .credits-php, | 52 | .credits-php, |
| 51 | .freedoms-php, | 53 | .freedoms-php, |
| 52 | .privacy-php { | 54 | .privacy-php, |
| 55 | .contribute-php { | ||
| 53 | background: #fff; | 56 | background: #fff; |
| 54 | } | 57 | } |
| 55 | 58 | ||
| 56 | .about-php #wpcontent, | 59 | .about-php #wpcontent, |
| 57 | .credits-php #wpcontent, | 60 | .credits-php #wpcontent, |
| 58 | .freedoms-php #wpcontent, | 61 | .freedoms-php #wpcontent, |
| 59 | .privacy-php #wpcontent { | 62 | .privacy-php #wpcontent, |
| 63 | .contribute-php #wpcontent { | ||
| 60 | background: #fff; | 64 | background: #fff; |
| 61 | padding: 0 24px; | 65 | padding: 0 24px; |
| 62 | } | 66 | } |
| ... | @@ -65,7 +69,8 @@ | ... | @@ -65,7 +69,8 @@ |
| 65 | .about-php.auto-fold #wpcontent, | 69 | .about-php.auto-fold #wpcontent, |
| 66 | .credits-php.auto-fold #wpcontent, | 70 | .credits-php.auto-fold #wpcontent, |
| 67 | .freedoms-php.auto-fold #wpcontent, | 71 | .freedoms-php.auto-fold #wpcontent, |
| 68 | .privacy-php.auto-fold #wpcontent { | 72 | .privacy-php.auto-fold #wpcontent, |
| 73 | .contribute-php.auto-fold #wpcontent { | ||
| 69 | padding-right: 24px; | 74 | padding-right: 24px; |
| 70 | } | 75 | } |
| 71 | } | 76 | } |
| ... | @@ -109,6 +114,10 @@ | ... | @@ -109,6 +114,10 @@ |
| 109 | background-color: var(--accent-2); | 114 | background-color: var(--accent-2); |
| 110 | } | 115 | } |
| 111 | 116 | ||
| 117 | .about__container .has-accent-4-background-color { | ||
| 118 | background-color: var(--accent-4); | ||
| 119 | } | ||
| 120 | |||
| 112 | .about__container .has-transparent-background-color { | 121 | .about__container .has-transparent-background-color { |
| 113 | background-color: transparent; | 122 | background-color: transparent; |
| 114 | } | 123 | } |
| ... | @@ -366,7 +375,6 @@ | ... | @@ -366,7 +375,6 @@ |
| 366 | 375 | ||
| 367 | .about__container h1 { | 376 | .about__container h1 { |
| 368 | padding: 0; | 377 | padding: 0; |
| 369 | color: inherit; | ||
| 370 | } | 378 | } |
| 371 | 379 | ||
| 372 | .about__container h1, | 380 | .about__container h1, |
| ... | @@ -409,14 +417,14 @@ | ... | @@ -409,14 +417,14 @@ |
| 409 | } | 417 | } |
| 410 | 418 | ||
| 411 | .about__section a { | 419 | .about__section a { |
| 412 | color: var(--accent-1); | 420 | color: var(--text); |
| 413 | text-decoration: underline; | 421 | text-decoration: underline; |
| 414 | } | 422 | } |
| 415 | 423 | ||
| 416 | .about__section a:hover, | 424 | .about__section a:hover, |
| 417 | .about__section a:active, | 425 | .about__section a:active, |
| 418 | .about__section a:focus { | 426 | .about__section a:focus { |
| 419 | color: var(--accent-1); | 427 | color: var(--text); |
| 420 | text-decoration: none; | 428 | text-decoration: none; |
| 421 | } | 429 | } |
| 422 | 430 | ||
| ... | @@ -473,24 +481,20 @@ | ... | @@ -473,24 +481,20 @@ |
| 473 | margin-top: 1.5em; | 481 | margin-top: 1.5em; |
| 474 | } | 482 | } |
| 475 | 483 | ||
| 476 | .about__container .column .about__image { | ||
| 477 | margin-bottom: calc(var(--gap) / 2); | ||
| 478 | } | ||
| 479 | |||
| 480 | .about__container hr { | 484 | .about__container hr { |
| 481 | margin: 0 var(--gap); | 485 | margin: calc(var(--gap) / 2) var(--gap); |
| 482 | height: var(--gap); | 486 | height: 0; |
| 483 | border: none; | 487 | border: none; |
| 484 | border-top: 4px solid var(--accent-2); | 488 | border-top: 4px solid var(--accent-3); |
| 485 | } | 489 | } |
| 486 | 490 | ||
| 487 | .about__container hr.is-small { | 491 | .about__container hr.is-small { |
| 488 | height: calc(var(--gap) / 4); | 492 | margin-top: 0; |
| 493 | margin-bottom: 0; | ||
| 489 | } | 494 | } |
| 490 | 495 | ||
| 491 | .about__container hr.is-large { | 496 | .about__container hr.is-large { |
| 492 | height: calc(var(--gap) * 2); | 497 | margin: var(--gap) auto; |
| 493 | margin: calc(var(--gap) / 2) auto; | ||
| 494 | } | 498 | } |
| 495 | 499 | ||
| 496 | .about__container div.updated, | 500 | .about__container div.updated, |
| ... | @@ -531,27 +535,34 @@ | ... | @@ -531,27 +535,34 @@ |
| 531 | position: relative; | 535 | position: relative; |
| 532 | display: flex; | 536 | display: flex; |
| 533 | flex-direction: column; | 537 | flex-direction: column; |
| 534 | align-items: center; | 538 | align-items: start; |
| 535 | justify-content: center; | 539 | justify-content: end; |
| 536 | box-sizing: border-box; | 540 | box-sizing: border-box; |
| 537 | padding: calc(var(--gap) * 2) 0; | 541 | padding: var(--gap) 0; |
| 538 | min-height: 420px; | 542 | height: clamp(12.5rem, -1.25rem + 36.67vw, 26.25rem); |
| 539 | color: var(--text-light); | 543 | color: var(--text-light); |
| 540 | background: var(--background) url('../images/about-header-about.svg?ver=6.2') no-repeat; | 544 | background-image: url('../images/about-header-about.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 541 | background-size: cover; | 545 | background-size: auto 70%, cover; |
| 542 | background-position: center; | 546 | border-radius: 5px; |
| 547 | background-repeat: no-repeat; | ||
| 548 | background-position: left 7% center, top right; | ||
| 549 | background-color: var(--background); | ||
| 543 | } | 550 | } |
| 544 | 551 | ||
| 545 | .credits-php .about__header { | 552 | .credits-php .about__header { |
| 546 | background-image: url('../images/about-header-credits.svg?ver=6.2'); | 553 | background-image: url('../images/about-header-credits.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 547 | } | 554 | } |
| 548 | 555 | ||
| 549 | .freedoms-php .about__header { | 556 | .freedoms-php .about__header { |
| 550 | background-image: url('../images/about-header-freedoms.svg?ver=6.2'); | 557 | background-image: url('../images/about-header-freedoms.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 551 | } | 558 | } |
| 552 | 559 | ||
| 553 | .privacy-php .about__header { | 560 | .privacy-php .about__header { |
| 554 | background-image: url('../images/about-header-privacy.svg?ver=6.2'); | 561 | background-image: url('../images/about-header-privacy.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 562 | } | ||
| 563 | |||
| 564 | .contribute-php .about__header { | ||
| 565 | background-image: url('../images/about-header-contribute.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); | ||
| 555 | } | 566 | } |
| 556 | 567 | ||
| 557 | .about__header-image { | 568 | .about__header-image { |
| ... | @@ -560,34 +571,32 @@ | ... | @@ -560,34 +571,32 @@ |
| 560 | 571 | ||
| 561 | .about__header-title { | 572 | .about__header-title { |
| 562 | box-sizing: border-box; | 573 | box-sizing: border-box; |
| 563 | margin: 0 var(--gap); | 574 | margin: 0 calc(var(--gap) + 2rem); |
| 564 | padding: 0; | 575 | padding: 0; |
| 565 | text-align: center; | 576 | max-width: 55%; |
| 566 | } | 577 | } |
| 567 | 578 | ||
| 568 | .about__header-title h1 { | 579 | .about__header-title h1 { |
| 569 | margin: 0 0 1rem; | 580 | margin: 0 0 1rem; |
| 570 | padding: 0; | 581 | padding: 0; |
| 571 | /* Fluid font size scales on browser size 960px - 1200px. */ | 582 | /* Fluid font size scales on browser size 960px - 1200px. */ |
| 572 | font-size: clamp(3rem, 20vw - 9rem, 6rem); | 583 | font-size: clamp(2rem, 20vw - 9rem, 4rem); |
| 573 | line-height: 1; | 584 | line-height: 1; |
| 574 | font-weight: 600; | 585 | font-weight: 600; |
| 575 | } | 586 | } |
| 576 | 587 | ||
| 588 | .about-php .about__header-title h1, | ||
| 577 | .credits-php .about__header-title h1, | 589 | .credits-php .about__header-title h1, |
| 590 | .freedoms-php .about__header-title h1, | ||
| 578 | .privacy-php .about__header-title h1, | 591 | .privacy-php .about__header-title h1, |
| 579 | .freedoms-php .about__header-title h1 { | 592 | .contribute-php .about__header-title h1 { |
| 580 | /* Fluid font size scales on browser size 960px - 1200px. */ | 593 | /* Fluid font size scales on browser size 960px - 1200px. */ |
| 581 | font-size: clamp(3rem, 10vw - 3rem, 4.5rem); | 594 | font-size: clamp(2rem, 10vw - 3rem, 4rem); |
| 582 | } | ||
| 583 | |||
| 584 | .about__header-title h1 span { | ||
| 585 | color: var(--accent-2); | ||
| 586 | } | 595 | } |
| 587 | 596 | ||
| 588 | .about__header-text { | 597 | .about__header-text { |
| 589 | box-sizing: border-box; | 598 | box-sizing: border-box; |
| 590 | max-width: 22em; | 599 | max-width: 26em; |
| 591 | margin: 0 auto; | 600 | margin: 0 auto; |
| 592 | padding: 0; | 601 | padding: 0; |
| 593 | font-size: 1.6rem; | 602 | font-size: 1.6rem; |
| ... | @@ -641,17 +650,19 @@ | ... | @@ -641,17 +650,19 @@ |
| 641 | } | 650 | } |
| 642 | 651 | ||
| 643 | @media screen and (max-width: 960px) { | 652 | @media screen and (max-width: 960px) { |
| 644 | .about__header-title h1 { | ||
| 645 | /* Fluid font size scales on browser size 600px - 960px. */ | ||
| 646 | font-size: clamp(3rem, 13.33vw - 2rem, 6rem); | ||
| 647 | } | ||
| 648 | 653 | ||
| 654 | .about-php .about__header-title h1, | ||
| 649 | .credits-php .about__header-title h1, | 655 | .credits-php .about__header-title h1, |
| 656 | .freedoms-php .about__header-title h1, | ||
| 650 | .privacy-php .about__header-title h1, | 657 | .privacy-php .about__header-title h1, |
| 651 | .freedoms-php .about__header-title h1 { | 658 | .contribute-php .about__header-title h1 { |
| 652 | /* Fluid font size scales on browser size 600px - 960px. */ | 659 | /* Fluid font size scales on browser size 600px - 960px. */ |
| 653 | font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem); | 660 | font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem); |
| 654 | } | 661 | } |
| 662 | |||
| 663 | .about__header-navigation .nav-tab { | ||
| 664 | padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5); | ||
| 665 | } | ||
| 655 | } | 666 | } |
| 656 | 667 | ||
| 657 | @media screen and (max-width: 782px) { | 668 | @media screen and (max-width: 782px) { |
| ... | @@ -685,13 +696,12 @@ | ... | @@ -685,13 +696,12 @@ |
| 685 | .about__header { | 696 | .about__header { |
| 686 | min-height: auto; | 697 | min-height: auto; |
| 687 | } | 698 | } |
| 688 | } | ||
| 689 | 699 | ||
| 690 | @media screen and (max-width: 480px) { | ||
| 691 | .about__header, | 700 | .about__header, |
| 692 | .credits-php .about__header, | 701 | .credits-php .about__header, |
| 702 | .freedoms-php .about__header, | ||
| 693 | .privacy-php .about__header, | 703 | .privacy-php .about__header, |
| 694 | .freedoms-php .about__header { | 704 | .contribute-php .about__header { |
| 695 | background-image: none; | 705 | background-image: none; |
| 696 | } | 706 | } |
| 697 | 707 | ||
| ... | @@ -728,7 +738,7 @@ | ... | @@ -728,7 +738,7 @@ |
| 728 | ------------------------------------------------------------------------------*/ | 738 | ------------------------------------------------------------------------------*/ |
| 729 | 739 | ||
| 730 | .about__section .wp-people-group-title { | 740 | .about__section .wp-people-group-title { |
| 731 | margin-bottom: calc(var(--gap) * 2); | 741 | margin-bottom: calc(var(--gap) * 2 - 10px); |
| 732 | text-align: center; | 742 | text-align: center; |
| 733 | 743 | ||
| 734 | } | 744 | } |
| ... | @@ -743,7 +753,7 @@ | ... | @@ -743,7 +753,7 @@ |
| 743 | display: inline-block; | 753 | display: inline-block; |
| 744 | vertical-align: top; | 754 | vertical-align: top; |
| 745 | box-sizing: border-box; | 755 | box-sizing: border-box; |
| 746 | margin-bottom: var(--gap); | 756 | margin-bottom: calc(var(--gap) - 10px); |
| 747 | width: 25%; | 757 | width: 25%; |
| 748 | text-align: center; | 758 | text-align: center; |
| 749 | } | 759 | } |
| ... | @@ -760,14 +770,12 @@ | ... | @@ -760,14 +770,12 @@ |
| 760 | height: 140px; | 770 | height: 140px; |
| 761 | border-radius: 100%; | 771 | border-radius: 100%; |
| 762 | overflow: hidden; | 772 | overflow: hidden; |
| 763 | background: var(--accent-1); | ||
| 764 | } | 773 | } |
| 765 | 774 | ||
| 766 | .about__section .wp-person .gravatar { | 775 | .about__section .wp-person .gravatar { |
| 767 | width: 140px; | 776 | width: 140px; |
| 768 | height: 140px; | 777 | height: 140px; |
| 769 | filter: grayscale(100%); | 778 | filter: grayscale(100%); |
| 770 | mix-blend-mode: screen; | ||
| 771 | } | 779 | } |
| 772 | 780 | ||
| 773 | .about__section .compact .wp-person-avatar, | 781 | .about__section .compact .wp-person-avatar, |
| ... | @@ -777,8 +785,10 @@ | ... | @@ -777,8 +785,10 @@ |
| 777 | } | 785 | } |
| 778 | 786 | ||
| 779 | .about__section .wp-person .web { | 787 | .about__section .wp-person .web { |
| 788 | display: block; | ||
| 780 | font-size: 1.4em; | 789 | font-size: 1.4em; |
| 781 | font-weight: 600; | 790 | font-weight: 600; |
| 791 | padding: 10px 10px 0; | ||
| 782 | text-decoration: none; | 792 | text-decoration: none; |
| 783 | } | 793 | } |
| 784 | 794 | ... | ... |
This diff is collapsed.
Click to expand it.
| 1 | /*------------------------------------------------------------------------------ | 1 | /*------------------------------------------------------------------------------ |
| 2 | 22.0 - About Pages | 2 | 22.0 - About Pages |
| 3 | 3 | ||
| 4 | 1.0 Global: About, Credits, Freedoms, Privacy | 4 | 1.0 Global: About, Credits, Freedoms, Privacy, Get Involved |
| 5 | 1.1 Layout | 5 | 1.1 Layout |
| 6 | 1.2 Typography & Elements | 6 | 1.2 Typography & Elements |
| 7 | 1.3 Header | 7 | 1.3 Header |
| ... | @@ -21,16 +21,18 @@ | ... | @@ -21,16 +21,18 @@ |
| 21 | 21 | ||
| 22 | .about__container { | 22 | .about__container { |
| 23 | /* Section backgrounds */ | 23 | /* Section backgrounds */ |
| 24 | --background: #1d35b4; | 24 | --background: #EAE9E7; |
| 25 | --subtle-background: #eff2ff; | 25 | --subtle-background: #EAE9E7; |
| 26 | 26 | ||
| 27 | /* Main text color */ | 27 | /* Main text color */ |
| 28 | --text: #000; | 28 | --text: #1e1e1e; |
| 29 | --text-light: #fff; | 29 | --text-light: #fff; |
| 30 | 30 | ||
| 31 | /* Accent colors: used in header, on special classes. */ | 31 | /* Accent colors: used in header, on special classes. */ |
| 32 | --accent-1: #1d35b4; /* Link color, credit image overlay */ | 32 | --accent-1: #C94C26; /* Link color */ |
| 33 | --accent-2: #33f078; /* Accent background */ | 33 | --accent-2: #CFCABE; /* Accent background */ |
| 34 | --accent-3: #f0f0f1; /* hr background */ | ||
| 35 | --accent-4: #B1C5A4; /* Light green */ | ||
| 34 | 36 | ||
| 35 | /* Navigation colors. */ | 37 | /* Navigation colors. */ |
| 36 | --nav-background: #fff; | 38 | --nav-background: #fff; |
| ... | @@ -42,20 +44,22 @@ | ... | @@ -42,20 +44,22 @@ |
| 42 | } | 44 | } |
| 43 | 45 | ||
| 44 | /*------------------------------------------------------------------------------ | 46 | /*------------------------------------------------------------------------------ |
| 45 | 1.0 - Global: About, Credits, Freedoms, Privacy | 47 | 1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved |
| 46 | ------------------------------------------------------------------------------*/ | 48 | ------------------------------------------------------------------------------*/ |
| 47 | 49 | ||
| 48 | .about-php, | 50 | .about-php, |
| 49 | .credits-php, | 51 | .credits-php, |
| 50 | .freedoms-php, | 52 | .freedoms-php, |
| 51 | .privacy-php { | 53 | .privacy-php, |
| 54 | .contribute-php { | ||
| 52 | background: #fff; | 55 | background: #fff; |
| 53 | } | 56 | } |
| 54 | 57 | ||
| 55 | .about-php #wpcontent, | 58 | .about-php #wpcontent, |
| 56 | .credits-php #wpcontent, | 59 | .credits-php #wpcontent, |
| 57 | .freedoms-php #wpcontent, | 60 | .freedoms-php #wpcontent, |
| 58 | .privacy-php #wpcontent { | 61 | .privacy-php #wpcontent, |
| 62 | .contribute-php #wpcontent { | ||
| 59 | background: #fff; | 63 | background: #fff; |
| 60 | padding: 0 24px; | 64 | padding: 0 24px; |
| 61 | } | 65 | } |
| ... | @@ -64,7 +68,8 @@ | ... | @@ -64,7 +68,8 @@ |
| 64 | .about-php.auto-fold #wpcontent, | 68 | .about-php.auto-fold #wpcontent, |
| 65 | .credits-php.auto-fold #wpcontent, | 69 | .credits-php.auto-fold #wpcontent, |
| 66 | .freedoms-php.auto-fold #wpcontent, | 70 | .freedoms-php.auto-fold #wpcontent, |
| 67 | .privacy-php.auto-fold #wpcontent { | 71 | .privacy-php.auto-fold #wpcontent, |
| 72 | .contribute-php.auto-fold #wpcontent { | ||
| 68 | padding-left: 24px; | 73 | padding-left: 24px; |
| 69 | } | 74 | } |
| 70 | } | 75 | } |
| ... | @@ -108,6 +113,10 @@ | ... | @@ -108,6 +113,10 @@ |
| 108 | background-color: var(--accent-2); | 113 | background-color: var(--accent-2); |
| 109 | } | 114 | } |
| 110 | 115 | ||
| 116 | .about__container .has-accent-4-background-color { | ||
| 117 | background-color: var(--accent-4); | ||
| 118 | } | ||
| 119 | |||
| 111 | .about__container .has-transparent-background-color { | 120 | .about__container .has-transparent-background-color { |
| 112 | background-color: transparent; | 121 | background-color: transparent; |
| 113 | } | 122 | } |
| ... | @@ -365,7 +374,6 @@ | ... | @@ -365,7 +374,6 @@ |
| 365 | 374 | ||
| 366 | .about__container h1 { | 375 | .about__container h1 { |
| 367 | padding: 0; | 376 | padding: 0; |
| 368 | color: inherit; | ||
| 369 | } | 377 | } |
| 370 | 378 | ||
| 371 | .about__container h1, | 379 | .about__container h1, |
| ... | @@ -408,14 +416,14 @@ | ... | @@ -408,14 +416,14 @@ |
| 408 | } | 416 | } |
| 409 | 417 | ||
| 410 | .about__section a { | 418 | .about__section a { |
| 411 | color: var(--accent-1); | 419 | color: var(--text); |
| 412 | text-decoration: underline; | 420 | text-decoration: underline; |
| 413 | } | 421 | } |
| 414 | 422 | ||
| 415 | .about__section a:hover, | 423 | .about__section a:hover, |
| 416 | .about__section a:active, | 424 | .about__section a:active, |
| 417 | .about__section a:focus { | 425 | .about__section a:focus { |
| 418 | color: var(--accent-1); | 426 | color: var(--text); |
| 419 | text-decoration: none; | 427 | text-decoration: none; |
| 420 | } | 428 | } |
| 421 | 429 | ||
| ... | @@ -472,24 +480,20 @@ | ... | @@ -472,24 +480,20 @@ |
| 472 | margin-top: 1.5em; | 480 | margin-top: 1.5em; |
| 473 | } | 481 | } |
| 474 | 482 | ||
| 475 | .about__container .column .about__image { | ||
| 476 | margin-bottom: calc(var(--gap) / 2); | ||
| 477 | } | ||
| 478 | |||
| 479 | .about__container hr { | 483 | .about__container hr { |
| 480 | margin: 0 var(--gap); | 484 | margin: calc(var(--gap) / 2) var(--gap); |
| 481 | height: var(--gap); | 485 | height: 0; |
| 482 | border: none; | 486 | border: none; |
| 483 | border-top: 4px solid var(--accent-2); | 487 | border-top: 4px solid var(--accent-3); |
| 484 | } | 488 | } |
| 485 | 489 | ||
| 486 | .about__container hr.is-small { | 490 | .about__container hr.is-small { |
| 487 | height: calc(var(--gap) / 4); | 491 | margin-top: 0; |
| 492 | margin-bottom: 0; | ||
| 488 | } | 493 | } |
| 489 | 494 | ||
| 490 | .about__container hr.is-large { | 495 | .about__container hr.is-large { |
| 491 | height: calc(var(--gap) * 2); | 496 | margin: var(--gap) auto; |
| 492 | margin: calc(var(--gap) / 2) auto; | ||
| 493 | } | 497 | } |
| 494 | 498 | ||
| 495 | .about__container div.updated, | 499 | .about__container div.updated, |
| ... | @@ -530,27 +534,34 @@ | ... | @@ -530,27 +534,34 @@ |
| 530 | position: relative; | 534 | position: relative; |
| 531 | display: flex; | 535 | display: flex; |
| 532 | flex-direction: column; | 536 | flex-direction: column; |
| 533 | align-items: center; | 537 | align-items: start; |
| 534 | justify-content: center; | 538 | justify-content: end; |
| 535 | box-sizing: border-box; | 539 | box-sizing: border-box; |
| 536 | padding: calc(var(--gap) * 2) 0; | 540 | padding: var(--gap) 0; |
| 537 | min-height: 420px; | 541 | height: clamp(12.5rem, -1.25rem + 36.67vw, 26.25rem); |
| 538 | color: var(--text-light); | 542 | color: var(--text-light); |
| 539 | background: var(--background) url('../images/about-header-about.svg?ver=6.2') no-repeat; | 543 | background-image: url('../images/about-header-about.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 540 | background-size: cover; | 544 | background-size: auto 70%, cover; |
| 541 | background-position: center; | 545 | border-radius: 5px; |
| 546 | background-repeat: no-repeat; | ||
| 547 | background-position: right 7% center, top left; | ||
| 548 | background-color: var(--background); | ||
| 542 | } | 549 | } |
| 543 | 550 | ||
| 544 | .credits-php .about__header { | 551 | .credits-php .about__header { |
| 545 | background-image: url('../images/about-header-credits.svg?ver=6.2'); | 552 | background-image: url('../images/about-header-credits.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 546 | } | 553 | } |
| 547 | 554 | ||
| 548 | .freedoms-php .about__header { | 555 | .freedoms-php .about__header { |
| 549 | background-image: url('../images/about-header-freedoms.svg?ver=6.2'); | 556 | background-image: url('../images/about-header-freedoms.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 550 | } | 557 | } |
| 551 | 558 | ||
| 552 | .privacy-php .about__header { | 559 | .privacy-php .about__header { |
| 553 | background-image: url('../images/about-header-privacy.svg?ver=6.2'); | 560 | background-image: url('../images/about-header-privacy.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); |
| 561 | } | ||
| 562 | |||
| 563 | .contribute-php .about__header { | ||
| 564 | background-image: url('../images/about-header-contribute.svg?ver=6.4'), url('../images/about-header-background.svg?ver=6.4'); | ||
| 554 | } | 565 | } |
| 555 | 566 | ||
| 556 | .about__header-image { | 567 | .about__header-image { |
| ... | @@ -559,34 +570,32 @@ | ... | @@ -559,34 +570,32 @@ |
| 559 | 570 | ||
| 560 | .about__header-title { | 571 | .about__header-title { |
| 561 | box-sizing: border-box; | 572 | box-sizing: border-box; |
| 562 | margin: 0 var(--gap); | 573 | margin: 0 calc(var(--gap) + 2rem); |
| 563 | padding: 0; | 574 | padding: 0; |
| 564 | text-align: center; | 575 | max-width: 55%; |
| 565 | } | 576 | } |
| 566 | 577 | ||
| 567 | .about__header-title h1 { | 578 | .about__header-title h1 { |
| 568 | margin: 0 0 1rem; | 579 | margin: 0 0 1rem; |
| 569 | padding: 0; | 580 | padding: 0; |
| 570 | /* Fluid font size scales on browser size 960px - 1200px. */ | 581 | /* Fluid font size scales on browser size 960px - 1200px. */ |
| 571 | font-size: clamp(3rem, 20vw - 9rem, 6rem); | 582 | font-size: clamp(2rem, 20vw - 9rem, 4rem); |
| 572 | line-height: 1; | 583 | line-height: 1; |
| 573 | font-weight: 600; | 584 | font-weight: 600; |
| 574 | } | 585 | } |
| 575 | 586 | ||
| 587 | .about-php .about__header-title h1, | ||
| 576 | .credits-php .about__header-title h1, | 588 | .credits-php .about__header-title h1, |
| 589 | .freedoms-php .about__header-title h1, | ||
| 577 | .privacy-php .about__header-title h1, | 590 | .privacy-php .about__header-title h1, |
| 578 | .freedoms-php .about__header-title h1 { | 591 | .contribute-php .about__header-title h1 { |
| 579 | /* Fluid font size scales on browser size 960px - 1200px. */ | 592 | /* Fluid font size scales on browser size 960px - 1200px. */ |
| 580 | font-size: clamp(3rem, 10vw - 3rem, 4.5rem); | 593 | font-size: clamp(2rem, 10vw - 3rem, 4rem); |
| 581 | } | ||
| 582 | |||
| 583 | .about__header-title h1 span { | ||
| 584 | color: var(--accent-2); | ||
| 585 | } | 594 | } |
| 586 | 595 | ||
| 587 | .about__header-text { | 596 | .about__header-text { |
| 588 | box-sizing: border-box; | 597 | box-sizing: border-box; |
| 589 | max-width: 22em; | 598 | max-width: 26em; |
| 590 | margin: 0 auto; | 599 | margin: 0 auto; |
| 591 | padding: 0; | 600 | padding: 0; |
| 592 | font-size: 1.6rem; | 601 | font-size: 1.6rem; |
| ... | @@ -640,17 +649,19 @@ | ... | @@ -640,17 +649,19 @@ |
| 640 | } | 649 | } |
| 641 | 650 | ||
| 642 | @media screen and (max-width: 960px) { | 651 | @media screen and (max-width: 960px) { |
| 643 | .about__header-title h1 { | ||
| 644 | /* Fluid font size scales on browser size 600px - 960px. */ | ||
| 645 | font-size: clamp(3rem, 13.33vw - 2rem, 6rem); | ||
| 646 | } | ||
| 647 | 652 | ||
| 653 | .about-php .about__header-title h1, | ||
| 648 | .credits-php .about__header-title h1, | 654 | .credits-php .about__header-title h1, |
| 655 | .freedoms-php .about__header-title h1, | ||
| 649 | .privacy-php .about__header-title h1, | 656 | .privacy-php .about__header-title h1, |
| 650 | .freedoms-php .about__header-title h1 { | 657 | .contribute-php .about__header-title h1 { |
| 651 | /* Fluid font size scales on browser size 600px - 960px. */ | 658 | /* Fluid font size scales on browser size 600px - 960px. */ |
| 652 | font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem); | 659 | font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem); |
| 653 | } | 660 | } |
| 661 | |||
| 662 | .about__header-navigation .nav-tab { | ||
| 663 | padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5); | ||
| 664 | } | ||
| 654 | } | 665 | } |
| 655 | 666 | ||
| 656 | @media screen and (max-width: 782px) { | 667 | @media screen and (max-width: 782px) { |
| ... | @@ -684,13 +695,12 @@ | ... | @@ -684,13 +695,12 @@ |
| 684 | .about__header { | 695 | .about__header { |
| 685 | min-height: auto; | 696 | min-height: auto; |
| 686 | } | 697 | } |
| 687 | } | ||
| 688 | 698 | ||
| 689 | @media screen and (max-width: 480px) { | ||
| 690 | .about__header, | 699 | .about__header, |
| 691 | .credits-php .about__header, | 700 | .credits-php .about__header, |
| 701 | .freedoms-php .about__header, | ||
| 692 | .privacy-php .about__header, | 702 | .privacy-php .about__header, |
| 693 | .freedoms-php .about__header { | 703 | .contribute-php .about__header { |
| 694 | background-image: none; | 704 | background-image: none; |
| 695 | } | 705 | } |
| 696 | 706 | ||
| ... | @@ -727,7 +737,7 @@ | ... | @@ -727,7 +737,7 @@ |
| 727 | ------------------------------------------------------------------------------*/ | 737 | ------------------------------------------------------------------------------*/ |
| 728 | 738 | ||
| 729 | .about__section .wp-people-group-title { | 739 | .about__section .wp-people-group-title { |
| 730 | margin-bottom: calc(var(--gap) * 2); | 740 | margin-bottom: calc(var(--gap) * 2 - 10px); |
| 731 | text-align: center; | 741 | text-align: center; |
| 732 | 742 | ||
| 733 | } | 743 | } |
| ... | @@ -742,7 +752,7 @@ | ... | @@ -742,7 +752,7 @@ |
| 742 | display: inline-block; | 752 | display: inline-block; |
| 743 | vertical-align: top; | 753 | vertical-align: top; |
| 744 | box-sizing: border-box; | 754 | box-sizing: border-box; |
| 745 | margin-bottom: var(--gap); | 755 | margin-bottom: calc(var(--gap) - 10px); |
| 746 | width: 25%; | 756 | width: 25%; |
| 747 | text-align: center; | 757 | text-align: center; |
| 748 | } | 758 | } |
| ... | @@ -759,14 +769,12 @@ | ... | @@ -759,14 +769,12 @@ |
| 759 | height: 140px; | 769 | height: 140px; |
| 760 | border-radius: 100%; | 770 | border-radius: 100%; |
| 761 | overflow: hidden; | 771 | overflow: hidden; |
| 762 | background: var(--accent-1); | ||
| 763 | } | 772 | } |
| 764 | 773 | ||
| 765 | .about__section .wp-person .gravatar { | 774 | .about__section .wp-person .gravatar { |
| 766 | width: 140px; | 775 | width: 140px; |
| 767 | height: 140px; | 776 | height: 140px; |
| 768 | filter: grayscale(100%); | 777 | filter: grayscale(100%); |
| 769 | mix-blend-mode: screen; | ||
| 770 | } | 778 | } |
| 771 | 779 | ||
| 772 | .about__section .compact .wp-person-avatar, | 780 | .about__section .compact .wp-person-avatar, |
| ... | @@ -776,8 +784,10 @@ | ... | @@ -776,8 +784,10 @@ |
| 776 | } | 784 | } |
| 777 | 785 | ||
| 778 | .about__section .wp-person .web { | 786 | .about__section .wp-person .web { |
| 787 | display: block; | ||
| 779 | font-size: 1.4em; | 788 | font-size: 1.4em; |
| 780 | font-weight: 600; | 789 | font-weight: 600; |
| 790 | padding: 10px 10px 0; | ||
| 781 | text-decoration: none; | 791 | text-decoration: none; |
| 782 | } | 792 | } |
| 783 | 793 | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -786,19 +786,3 @@ div#wp-responsive-toggle a:before { | ... | @@ -786,19 +786,3 @@ div#wp-responsive-toggle a:before { |
| 786 | color: $link; | 786 | color: $link; |
| 787 | } | 787 | } |
| 788 | } | 788 | } |
| 789 | |||
| 790 | /* Welcome Panel */ | ||
| 791 | @if ( $custom-welcome-panel == "true" ) { | ||
| 792 | .welcome-panel { | ||
| 793 | background-color: $dashboard-accent-1; | ||
| 794 | } | ||
| 795 | |||
| 796 | .welcome-panel-header-image .curve, | ||
| 797 | .welcome-panel-header-image .dot { | ||
| 798 | fill: $dashboard-accent-2; | ||
| 799 | } | ||
| 800 | |||
| 801 | [class*="welcome-panel-icon"] { | ||
| 802 | background-color: $dashboard-icon-background; | ||
| 803 | } | ||
| 804 | } | ... | ... |
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #e1a948; | 708 | border-bottom-color: #e1a948; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #4796b3; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #52accc; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #096484; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #e1a948; | 708 | border-bottom-color: #e1a948; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #4796b3; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #52accc; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #096484; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -171,7 +171,7 @@ textarea:focus { | ... | @@ -171,7 +171,7 @@ textarea:focus { |
| 171 | color: #9ea476; | 171 | color: #9ea476; |
| 172 | } | 172 | } |
| 173 | .wp-core-ui .wp-ui-text-icon { | 173 | .wp-core-ui .wp-ui-text-icon { |
| 174 | color: hsl(27.6923076923deg, 7%, 95%); | 174 | color: hsl(27.6923076923, 7%, 95%); |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | /* List tables */ | 177 | /* List tables */ |
| ... | @@ -200,7 +200,7 @@ textarea:focus { | ... | @@ -200,7 +200,7 @@ textarea:focus { |
| 200 | } | 200 | } |
| 201 | 201 | ||
| 202 | #adminmenu div.wp-menu-image:before { | 202 | #adminmenu div.wp-menu-image:before { |
| 203 | color: hsl(27.6923076923deg, 7%, 95%); | 203 | color: hsl(27.6923076923, 7%, 95%); |
| 204 | } | 204 | } |
| 205 | 205 | ||
| 206 | #adminmenu a:hover, | 206 | #adminmenu a:hover, |
| ... | @@ -313,7 +313,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -313,7 +313,7 @@ ul#adminmenu > li.current > a.current:after { |
| 313 | 313 | ||
| 314 | /* Admin Menu: collapse button */ | 314 | /* Admin Menu: collapse button */ |
| 315 | #collapse-button { | 315 | #collapse-button { |
| 316 | color: hsl(27.6923076923deg, 7%, 95%); | 316 | color: hsl(27.6923076923, 7%, 95%); |
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | #collapse-button:hover, | 319 | #collapse-button:hover, |
| ... | @@ -338,7 +338,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -338,7 +338,7 @@ ul#adminmenu > li.current > a.current:after { |
| 338 | #wpadminbar .ab-icon:before, | 338 | #wpadminbar .ab-icon:before, |
| 339 | #wpadminbar .ab-item:before, | 339 | #wpadminbar .ab-item:before, |
| 340 | #wpadminbar .ab-item:after { | 340 | #wpadminbar .ab-item:after { |
| 341 | color: hsl(27.6923076923deg, 7%, 95%); | 341 | color: hsl(27.6923076923, 7%, 95%); |
| 342 | } | 342 | } |
| 343 | 343 | ||
| 344 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 344 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -382,7 +382,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -382,7 +382,7 @@ ul#adminmenu > li.current > a.current:after { |
| 382 | 382 | ||
| 383 | #wpadminbar .quicklinks li .blavatar, | 383 | #wpadminbar .quicklinks li .blavatar, |
| 384 | #wpadminbar .menupop .menupop > .ab-item:before { | 384 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 385 | color: hsl(27.6923076923deg, 7%, 95%); | 385 | color: hsl(27.6923076923, 7%, 95%); |
| 386 | } | 386 | } |
| 387 | 387 | ||
| 388 | #wpadminbar .quicklinks .menupop ul li a:hover, | 388 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -417,12 +417,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -417,12 +417,12 @@ ul#adminmenu > li.current > a.current:after { |
| 417 | 417 | ||
| 418 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 418 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 419 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 419 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 420 | color: hsl(27.6923076923deg, 7%, 95%); | 420 | color: hsl(27.6923076923, 7%, 95%); |
| 421 | } | 421 | } |
| 422 | 422 | ||
| 423 | /* Admin Bar: search */ | 423 | /* Admin Bar: search */ |
| 424 | #wpadminbar #adminbarsearch:before { | 424 | #wpadminbar #adminbarsearch:before { |
| 425 | color: hsl(27.6923076923deg, 7%, 95%); | 425 | color: hsl(27.6923076923, 7%, 95%); |
| 426 | } | 426 | } |
| 427 | 427 | ||
| 428 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 428 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -558,7 +558,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -558,7 +558,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 558 | 558 | ||
| 559 | /* Responsive Component */ | 559 | /* Responsive Component */ |
| 560 | div#wp-responsive-toggle a:before { | 560 | div#wp-responsive-toggle a:before { |
| 561 | color: hsl(27.6923076923deg, 7%, 95%); | 561 | color: hsl(27.6923076923, 7%, 95%); |
| 562 | } | 562 | } |
| 563 | 563 | ||
| 564 | .wp-responsive-open div#wp-responsive-toggle a { | 564 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -571,7 +571,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -571,7 +571,7 @@ div#wp-responsive-toggle a:before { |
| 571 | } | 571 | } |
| 572 | 572 | ||
| 573 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 573 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 574 | color: hsl(27.6923076923deg, 7%, 95%); | 574 | color: hsl(27.6923076923, 7%, 95%); |
| 575 | } | 575 | } |
| 576 | 576 | ||
| 577 | /* TinyMCE */ | 577 | /* TinyMCE */ |
| ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { |
| 674 | .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 { | 674 | .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 { |
| 675 | border-bottom-color: #c7a589; | 675 | border-bottom-color: #c7a589; |
| 676 | color: #0073aa; | 676 | color: #0073aa; |
| 677 | } | ||
| 678 | |||
| 679 | /* Welcome Panel */ | ||
| 680 | .welcome-panel { | ||
| 681 | background-color: #46403c; | ||
| 682 | } | ||
| 683 | |||
| 684 | .welcome-panel-header-image .curve, | ||
| 685 | .welcome-panel-header-image .dot { | ||
| 686 | fill: #59524c; | ||
| 687 | } | ||
| 688 | |||
| 689 | [class*=welcome-panel-icon] { | ||
| 690 | background-color: #59524c; | ||
| 691 | } | 677 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -171,7 +171,7 @@ textarea:focus { | ... | @@ -171,7 +171,7 @@ textarea:focus { |
| 171 | color: #9ea476; | 171 | color: #9ea476; |
| 172 | } | 172 | } |
| 173 | .wp-core-ui .wp-ui-text-icon { | 173 | .wp-core-ui .wp-ui-text-icon { |
| 174 | color: hsl(27.6923076923deg, 7%, 95%); | 174 | color: hsl(27.6923076923, 7%, 95%); |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | /* List tables */ | 177 | /* List tables */ |
| ... | @@ -200,7 +200,7 @@ textarea:focus { | ... | @@ -200,7 +200,7 @@ textarea:focus { |
| 200 | } | 200 | } |
| 201 | 201 | ||
| 202 | #adminmenu div.wp-menu-image:before { | 202 | #adminmenu div.wp-menu-image:before { |
| 203 | color: hsl(27.6923076923deg, 7%, 95%); | 203 | color: hsl(27.6923076923, 7%, 95%); |
| 204 | } | 204 | } |
| 205 | 205 | ||
| 206 | #adminmenu a:hover, | 206 | #adminmenu a:hover, |
| ... | @@ -313,7 +313,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -313,7 +313,7 @@ ul#adminmenu > li.current > a.current:after { |
| 313 | 313 | ||
| 314 | /* Admin Menu: collapse button */ | 314 | /* Admin Menu: collapse button */ |
| 315 | #collapse-button { | 315 | #collapse-button { |
| 316 | color: hsl(27.6923076923deg, 7%, 95%); | 316 | color: hsl(27.6923076923, 7%, 95%); |
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | #collapse-button:hover, | 319 | #collapse-button:hover, |
| ... | @@ -338,7 +338,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -338,7 +338,7 @@ ul#adminmenu > li.current > a.current:after { |
| 338 | #wpadminbar .ab-icon:before, | 338 | #wpadminbar .ab-icon:before, |
| 339 | #wpadminbar .ab-item:before, | 339 | #wpadminbar .ab-item:before, |
| 340 | #wpadminbar .ab-item:after { | 340 | #wpadminbar .ab-item:after { |
| 341 | color: hsl(27.6923076923deg, 7%, 95%); | 341 | color: hsl(27.6923076923, 7%, 95%); |
| 342 | } | 342 | } |
| 343 | 343 | ||
| 344 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 344 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -382,7 +382,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -382,7 +382,7 @@ ul#adminmenu > li.current > a.current:after { |
| 382 | 382 | ||
| 383 | #wpadminbar .quicklinks li .blavatar, | 383 | #wpadminbar .quicklinks li .blavatar, |
| 384 | #wpadminbar .menupop .menupop > .ab-item:before { | 384 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 385 | color: hsl(27.6923076923deg, 7%, 95%); | 385 | color: hsl(27.6923076923, 7%, 95%); |
| 386 | } | 386 | } |
| 387 | 387 | ||
| 388 | #wpadminbar .quicklinks .menupop ul li a:hover, | 388 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -417,12 +417,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -417,12 +417,12 @@ ul#adminmenu > li.current > a.current:after { |
| 417 | 417 | ||
| 418 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 418 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 419 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 419 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 420 | color: hsl(27.6923076923deg, 7%, 95%); | 420 | color: hsl(27.6923076923, 7%, 95%); |
| 421 | } | 421 | } |
| 422 | 422 | ||
| 423 | /* Admin Bar: search */ | 423 | /* Admin Bar: search */ |
| 424 | #wpadminbar #adminbarsearch:before { | 424 | #wpadminbar #adminbarsearch:before { |
| 425 | color: hsl(27.6923076923deg, 7%, 95%); | 425 | color: hsl(27.6923076923, 7%, 95%); |
| 426 | } | 426 | } |
| 427 | 427 | ||
| 428 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 428 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -558,7 +558,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -558,7 +558,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 558 | 558 | ||
| 559 | /* Responsive Component */ | 559 | /* Responsive Component */ |
| 560 | div#wp-responsive-toggle a:before { | 560 | div#wp-responsive-toggle a:before { |
| 561 | color: hsl(27.6923076923deg, 7%, 95%); | 561 | color: hsl(27.6923076923, 7%, 95%); |
| 562 | } | 562 | } |
| 563 | 563 | ||
| 564 | .wp-responsive-open div#wp-responsive-toggle a { | 564 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -571,7 +571,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -571,7 +571,7 @@ div#wp-responsive-toggle a:before { |
| 571 | } | 571 | } |
| 572 | 572 | ||
| 573 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 573 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 574 | color: hsl(27.6923076923deg, 7%, 95%); | 574 | color: hsl(27.6923076923, 7%, 95%); |
| 575 | } | 575 | } |
| 576 | 576 | ||
| 577 | /* TinyMCE */ | 577 | /* TinyMCE */ |
| ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { |
| 674 | .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 { | 674 | .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 { |
| 675 | border-bottom-color: #c7a589; | 675 | border-bottom-color: #c7a589; |
| 676 | color: #0073aa; | 676 | color: #0073aa; |
| 677 | } | ||
| 678 | |||
| 679 | /* Welcome Panel */ | ||
| 680 | .welcome-panel { | ||
| 681 | background-color: #46403c; | ||
| 682 | } | ||
| 683 | |||
| 684 | .welcome-panel-header-image .curve, | ||
| 685 | .welcome-panel-header-image .dot { | ||
| 686 | fill: #59524c; | ||
| 687 | } | ||
| 688 | |||
| 689 | [class*=welcome-panel-icon] { | ||
| 690 | background-color: #59524c; | ||
| 691 | } | 677 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #a3b745; | 708 | border-bottom-color: #a3b745; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #413256; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #523f6d; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #523f6d; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #a3b745; | 708 | border-bottom-color: #a3b745; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #413256; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #523f6d; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #523f6d; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -709,20 +709,6 @@ div#wp-responsive-toggle a:before { | ... | @@ -709,20 +709,6 @@ div#wp-responsive-toggle a:before { |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | 710 | } |
| 711 | 711 | ||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #04a4cc; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #17b5dd; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #333; | ||
| 724 | } | ||
| 725 | |||
| 726 | /* Override the theme filter highlight color for this scheme */ | 712 | /* Override the theme filter highlight color for this scheme */ |
| 727 | .theme-section.current, | 713 | .theme-section.current, |
| 728 | .theme-filter.current { | 714 | .theme-filter.current { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -709,20 +709,6 @@ div#wp-responsive-toggle a:before { | ... | @@ -709,20 +709,6 @@ div#wp-responsive-toggle a:before { |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | 710 | } |
| 711 | 711 | ||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #04a4cc; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #17b5dd; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #333; | ||
| 724 | } | ||
| 725 | |||
| 726 | /* Override the theme filter highlight color for this scheme */ | 712 | /* Override the theme filter highlight color for this scheme */ |
| 727 | .theme-section.current, | 713 | .theme-section.current, |
| 728 | .theme-filter.current { | 714 | .theme-filter.current { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -192,7 +192,7 @@ textarea:focus { | ... | @@ -192,7 +192,7 @@ textarea:focus { |
| 192 | color: #69a8bb; | 192 | color: #69a8bb; |
| 193 | } | 193 | } |
| 194 | .wp-core-ui .wp-ui-text-icon { | 194 | .wp-core-ui .wp-ui-text-icon { |
| 195 | color: hsl(206.6666666667deg, 7%, 95%); | 195 | color: hsl(206.6666666667, 7%, 95%); |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | /* List tables */ | 198 | /* List tables */ |
| ... | @@ -233,7 +233,7 @@ textarea:focus { | ... | @@ -233,7 +233,7 @@ textarea:focus { |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | #adminmenu div.wp-menu-image:before { | 235 | #adminmenu div.wp-menu-image:before { |
| 236 | color: hsl(206.6666666667deg, 7%, 95%); | 236 | color: hsl(206.6666666667, 7%, 95%); |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | #adminmenu a:hover, | 239 | #adminmenu a:hover, |
| ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { |
| 346 | 346 | ||
| 347 | /* Admin Menu: collapse button */ | 347 | /* Admin Menu: collapse button */ |
| 348 | #collapse-button { | 348 | #collapse-button { |
| 349 | color: hsl(206.6666666667deg, 7%, 95%); | 349 | color: hsl(206.6666666667, 7%, 95%); |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | #collapse-button:hover, | 352 | #collapse-button:hover, |
| ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { |
| 371 | #wpadminbar .ab-icon:before, | 371 | #wpadminbar .ab-icon:before, |
| 372 | #wpadminbar .ab-item:before, | 372 | #wpadminbar .ab-item:before, |
| 373 | #wpadminbar .ab-item:after { | 373 | #wpadminbar .ab-item:after { |
| 374 | color: hsl(206.6666666667deg, 7%, 95%); | 374 | color: hsl(206.6666666667, 7%, 95%); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { |
| 415 | 415 | ||
| 416 | #wpadminbar .quicklinks li .blavatar, | 416 | #wpadminbar .quicklinks li .blavatar, |
| 417 | #wpadminbar .menupop .menupop > .ab-item:before { | 417 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 418 | color: hsl(206.6666666667deg, 7%, 95%); | 418 | color: hsl(206.6666666667, 7%, 95%); |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | #wpadminbar .quicklinks .menupop ul li a:hover, | 421 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { |
| 450 | 450 | ||
| 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 453 | color: hsl(206.6666666667deg, 7%, 95%); | 453 | color: hsl(206.6666666667, 7%, 95%); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | /* Admin Bar: search */ | 456 | /* Admin Bar: search */ |
| 457 | #wpadminbar #adminbarsearch:before { | 457 | #wpadminbar #adminbarsearch:before { |
| 458 | color: hsl(206.6666666667deg, 7%, 95%); | 458 | color: hsl(206.6666666667, 7%, 95%); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 591 | 591 | ||
| 592 | /* Responsive Component */ | 592 | /* Responsive Component */ |
| 593 | div#wp-responsive-toggle a:before { | 593 | div#wp-responsive-toggle a:before { |
| 594 | color: hsl(206.6666666667deg, 7%, 95%); | 594 | color: hsl(206.6666666667, 7%, 95%); |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | .wp-responsive-open div#wp-responsive-toggle a { | 597 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { |
| 604 | } | 604 | } |
| 605 | 605 | ||
| 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 607 | color: hsl(206.6666666667deg, 7%, 95%); | 607 | color: hsl(206.6666666667, 7%, 95%); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | /* TinyMCE */ | 610 | /* TinyMCE */ |
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #e14d43; | 708 | border-bottom-color: #e14d43; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #26292c; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #3b464b; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #3b464b; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -192,7 +192,7 @@ textarea:focus { | ... | @@ -192,7 +192,7 @@ textarea:focus { |
| 192 | color: #69a8bb; | 192 | color: #69a8bb; |
| 193 | } | 193 | } |
| 194 | .wp-core-ui .wp-ui-text-icon { | 194 | .wp-core-ui .wp-ui-text-icon { |
| 195 | color: hsl(206.6666666667deg, 7%, 95%); | 195 | color: hsl(206.6666666667, 7%, 95%); |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | /* List tables */ | 198 | /* List tables */ |
| ... | @@ -233,7 +233,7 @@ textarea:focus { | ... | @@ -233,7 +233,7 @@ textarea:focus { |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | #adminmenu div.wp-menu-image:before { | 235 | #adminmenu div.wp-menu-image:before { |
| 236 | color: hsl(206.6666666667deg, 7%, 95%); | 236 | color: hsl(206.6666666667, 7%, 95%); |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | #adminmenu a:hover, | 239 | #adminmenu a:hover, |
| ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { |
| 346 | 346 | ||
| 347 | /* Admin Menu: collapse button */ | 347 | /* Admin Menu: collapse button */ |
| 348 | #collapse-button { | 348 | #collapse-button { |
| 349 | color: hsl(206.6666666667deg, 7%, 95%); | 349 | color: hsl(206.6666666667, 7%, 95%); |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | #collapse-button:hover, | 352 | #collapse-button:hover, |
| ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { |
| 371 | #wpadminbar .ab-icon:before, | 371 | #wpadminbar .ab-icon:before, |
| 372 | #wpadminbar .ab-item:before, | 372 | #wpadminbar .ab-item:before, |
| 373 | #wpadminbar .ab-item:after { | 373 | #wpadminbar .ab-item:after { |
| 374 | color: hsl(206.6666666667deg, 7%, 95%); | 374 | color: hsl(206.6666666667, 7%, 95%); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { |
| 415 | 415 | ||
| 416 | #wpadminbar .quicklinks li .blavatar, | 416 | #wpadminbar .quicklinks li .blavatar, |
| 417 | #wpadminbar .menupop .menupop > .ab-item:before { | 417 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 418 | color: hsl(206.6666666667deg, 7%, 95%); | 418 | color: hsl(206.6666666667, 7%, 95%); |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | #wpadminbar .quicklinks .menupop ul li a:hover, | 421 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { |
| 450 | 450 | ||
| 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 453 | color: hsl(206.6666666667deg, 7%, 95%); | 453 | color: hsl(206.6666666667, 7%, 95%); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | /* Admin Bar: search */ | 456 | /* Admin Bar: search */ |
| 457 | #wpadminbar #adminbarsearch:before { | 457 | #wpadminbar #adminbarsearch:before { |
| 458 | color: hsl(206.6666666667deg, 7%, 95%); | 458 | color: hsl(206.6666666667, 7%, 95%); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 591 | 591 | ||
| 592 | /* Responsive Component */ | 592 | /* Responsive Component */ |
| 593 | div#wp-responsive-toggle a:before { | 593 | div#wp-responsive-toggle a:before { |
| 594 | color: hsl(206.6666666667deg, 7%, 95%); | 594 | color: hsl(206.6666666667, 7%, 95%); |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | .wp-responsive-open div#wp-responsive-toggle a { | 597 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { |
| 604 | } | 604 | } |
| 605 | 605 | ||
| 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 607 | color: hsl(206.6666666667deg, 7%, 95%); | 607 | color: hsl(206.6666666667, 7%, 95%); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | /* TinyMCE */ | 610 | /* TinyMCE */ |
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #e14d43; | 708 | border-bottom-color: #e14d43; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #26292c; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #3b464b; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #3b464b; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -192,7 +192,7 @@ textarea:focus { | ... | @@ -192,7 +192,7 @@ textarea:focus { |
| 192 | color: #3858e9; | 192 | color: #3858e9; |
| 193 | } | 193 | } |
| 194 | .wp-core-ui .wp-ui-text-icon { | 194 | .wp-core-ui .wp-ui-text-icon { |
| 195 | color: hsl(0deg, 7%, 95%); | 195 | color: hsl(0, 7%, 95%); |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | /* List tables */ | 198 | /* List tables */ |
| ... | @@ -233,7 +233,7 @@ textarea:focus { | ... | @@ -233,7 +233,7 @@ textarea:focus { |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | #adminmenu div.wp-menu-image:before { | 235 | #adminmenu div.wp-menu-image:before { |
| 236 | color: hsl(0deg, 7%, 95%); | 236 | color: hsl(0, 7%, 95%); |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | #adminmenu a:hover, | 239 | #adminmenu a:hover, |
| ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { |
| 346 | 346 | ||
| 347 | /* Admin Menu: collapse button */ | 347 | /* Admin Menu: collapse button */ |
| 348 | #collapse-button { | 348 | #collapse-button { |
| 349 | color: hsl(0deg, 7%, 95%); | 349 | color: hsl(0, 7%, 95%); |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | #collapse-button:hover, | 352 | #collapse-button:hover, |
| ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { |
| 371 | #wpadminbar .ab-icon:before, | 371 | #wpadminbar .ab-icon:before, |
| 372 | #wpadminbar .ab-item:before, | 372 | #wpadminbar .ab-item:before, |
| 373 | #wpadminbar .ab-item:after { | 373 | #wpadminbar .ab-item:after { |
| 374 | color: hsl(0deg, 7%, 95%); | 374 | color: hsl(0, 7%, 95%); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { |
| 415 | 415 | ||
| 416 | #wpadminbar .quicklinks li .blavatar, | 416 | #wpadminbar .quicklinks li .blavatar, |
| 417 | #wpadminbar .menupop .menupop > .ab-item:before { | 417 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 418 | color: hsl(0deg, 7%, 95%); | 418 | color: hsl(0, 7%, 95%); |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | #wpadminbar .quicklinks .menupop ul li a:hover, | 421 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { |
| 450 | 450 | ||
| 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 453 | color: hsl(0deg, 7%, 95%); | 453 | color: hsl(0, 7%, 95%); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | /* Admin Bar: search */ | 456 | /* Admin Bar: search */ |
| 457 | #wpadminbar #adminbarsearch:before { | 457 | #wpadminbar #adminbarsearch:before { |
| 458 | color: hsl(0deg, 7%, 95%); | 458 | color: hsl(0, 7%, 95%); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 591 | 591 | ||
| 592 | /* Responsive Component */ | 592 | /* Responsive Component */ |
| 593 | div#wp-responsive-toggle a:before { | 593 | div#wp-responsive-toggle a:before { |
| 594 | color: hsl(0deg, 7%, 95%); | 594 | color: hsl(0, 7%, 95%); |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | .wp-responsive-open div#wp-responsive-toggle a { | 597 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { |
| 604 | } | 604 | } |
| 605 | 605 | ||
| 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 607 | color: hsl(0deg, 7%, 95%); | 607 | color: hsl(0, 7%, 95%); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | /* TinyMCE */ | 610 | /* TinyMCE */ |
| ... | @@ -707,6 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,6 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #3858e9; | 708 | border-bottom-color: #3858e9; |
| 709 | color: #3858e9; | 709 | color: #3858e9; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 710 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -192,7 +192,7 @@ textarea:focus { | ... | @@ -192,7 +192,7 @@ textarea:focus { |
| 192 | color: #3858e9; | 192 | color: #3858e9; |
| 193 | } | 193 | } |
| 194 | .wp-core-ui .wp-ui-text-icon { | 194 | .wp-core-ui .wp-ui-text-icon { |
| 195 | color: hsl(0deg, 7%, 95%); | 195 | color: hsl(0, 7%, 95%); |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | /* List tables */ | 198 | /* List tables */ |
| ... | @@ -233,7 +233,7 @@ textarea:focus { | ... | @@ -233,7 +233,7 @@ textarea:focus { |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | #adminmenu div.wp-menu-image:before { | 235 | #adminmenu div.wp-menu-image:before { |
| 236 | color: hsl(0deg, 7%, 95%); | 236 | color: hsl(0, 7%, 95%); |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | #adminmenu a:hover, | 239 | #adminmenu a:hover, |
| ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { |
| 346 | 346 | ||
| 347 | /* Admin Menu: collapse button */ | 347 | /* Admin Menu: collapse button */ |
| 348 | #collapse-button { | 348 | #collapse-button { |
| 349 | color: hsl(0deg, 7%, 95%); | 349 | color: hsl(0, 7%, 95%); |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | #collapse-button:hover, | 352 | #collapse-button:hover, |
| ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { |
| 371 | #wpadminbar .ab-icon:before, | 371 | #wpadminbar .ab-icon:before, |
| 372 | #wpadminbar .ab-item:before, | 372 | #wpadminbar .ab-item:before, |
| 373 | #wpadminbar .ab-item:after { | 373 | #wpadminbar .ab-item:after { |
| 374 | color: hsl(0deg, 7%, 95%); | 374 | color: hsl(0, 7%, 95%); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { |
| 415 | 415 | ||
| 416 | #wpadminbar .quicklinks li .blavatar, | 416 | #wpadminbar .quicklinks li .blavatar, |
| 417 | #wpadminbar .menupop .menupop > .ab-item:before { | 417 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 418 | color: hsl(0deg, 7%, 95%); | 418 | color: hsl(0, 7%, 95%); |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | #wpadminbar .quicklinks .menupop ul li a:hover, | 421 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { |
| 450 | 450 | ||
| 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 453 | color: hsl(0deg, 7%, 95%); | 453 | color: hsl(0, 7%, 95%); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | /* Admin Bar: search */ | 456 | /* Admin Bar: search */ |
| 457 | #wpadminbar #adminbarsearch:before { | 457 | #wpadminbar #adminbarsearch:before { |
| 458 | color: hsl(0deg, 7%, 95%); | 458 | color: hsl(0, 7%, 95%); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 591 | 591 | ||
| 592 | /* Responsive Component */ | 592 | /* Responsive Component */ |
| 593 | div#wp-responsive-toggle a:before { | 593 | div#wp-responsive-toggle a:before { |
| 594 | color: hsl(0deg, 7%, 95%); | 594 | color: hsl(0, 7%, 95%); |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | .wp-responsive-open div#wp-responsive-toggle a { | 597 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { |
| 604 | } | 604 | } |
| 605 | 605 | ||
| 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 607 | color: hsl(0deg, 7%, 95%); | 607 | color: hsl(0, 7%, 95%); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | /* TinyMCE */ | 610 | /* TinyMCE */ |
| ... | @@ -707,6 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,6 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #3858e9; | 708 | border-bottom-color: #3858e9; |
| 709 | color: #3858e9; | 709 | color: #3858e9; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 710 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { |
| 674 | .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 { | 674 | .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 { |
| 675 | border-bottom-color: #9ebaa0; | 675 | border-bottom-color: #9ebaa0; |
| 676 | color: #0073aa; | 676 | color: #0073aa; |
| 677 | } | ||
| 678 | |||
| 679 | /* Welcome Panel */ | ||
| 680 | .welcome-panel { | ||
| 681 | background-color: #627c83; | ||
| 682 | } | ||
| 683 | |||
| 684 | .welcome-panel-header-image .curve, | ||
| 685 | .welcome-panel-header-image .dot { | ||
| 686 | fill: #738e96; | ||
| 687 | } | ||
| 688 | |||
| 689 | [class*=welcome-panel-icon] { | ||
| 690 | background-color: #738e96; | ||
| 691 | } | 677 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -674,18 +674,4 @@ div#wp-responsive-toggle a:before { |
| 674 | .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 { | 674 | .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 { |
| 675 | border-bottom-color: #9ebaa0; | 675 | border-bottom-color: #9ebaa0; |
| 676 | color: #0073aa; | 676 | color: #0073aa; |
| 677 | } | ||
| 678 | |||
| 679 | /* Welcome Panel */ | ||
| 680 | .welcome-panel { | ||
| 681 | background-color: #627c83; | ||
| 682 | } | ||
| 683 | |||
| 684 | .welcome-panel-header-image .curve, | ||
| 685 | .welcome-panel-header-image .dot { | ||
| 686 | fill: #738e96; | ||
| 687 | } | ||
| 688 | |||
| 689 | [class*=welcome-panel-icon] { | ||
| 690 | background-color: #738e96; | ||
| 691 | } | 677 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -192,7 +192,7 @@ textarea:focus { | ... | @@ -192,7 +192,7 @@ textarea:focus { |
| 192 | color: #ccaf0b; | 192 | color: #ccaf0b; |
| 193 | } | 193 | } |
| 194 | .wp-core-ui .wp-ui-text-icon { | 194 | .wp-core-ui .wp-ui-text-icon { |
| 195 | color: hsl(2.1582733813deg, 7%, 95%); | 195 | color: hsl(2.1582733813, 7%, 95%); |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | /* List tables */ | 198 | /* List tables */ |
| ... | @@ -233,7 +233,7 @@ textarea:focus { | ... | @@ -233,7 +233,7 @@ textarea:focus { |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | #adminmenu div.wp-menu-image:before { | 235 | #adminmenu div.wp-menu-image:before { |
| 236 | color: hsl(2.1582733813deg, 7%, 95%); | 236 | color: hsl(2.1582733813, 7%, 95%); |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | #adminmenu a:hover, | 239 | #adminmenu a:hover, |
| ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { |
| 346 | 346 | ||
| 347 | /* Admin Menu: collapse button */ | 347 | /* Admin Menu: collapse button */ |
| 348 | #collapse-button { | 348 | #collapse-button { |
| 349 | color: hsl(2.1582733813deg, 7%, 95%); | 349 | color: hsl(2.1582733813, 7%, 95%); |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | #collapse-button:hover, | 352 | #collapse-button:hover, |
| ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { |
| 371 | #wpadminbar .ab-icon:before, | 371 | #wpadminbar .ab-icon:before, |
| 372 | #wpadminbar .ab-item:before, | 372 | #wpadminbar .ab-item:before, |
| 373 | #wpadminbar .ab-item:after { | 373 | #wpadminbar .ab-item:after { |
| 374 | color: hsl(2.1582733813deg, 7%, 95%); | 374 | color: hsl(2.1582733813, 7%, 95%); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { |
| 415 | 415 | ||
| 416 | #wpadminbar .quicklinks li .blavatar, | 416 | #wpadminbar .quicklinks li .blavatar, |
| 417 | #wpadminbar .menupop .menupop > .ab-item:before { | 417 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 418 | color: hsl(2.1582733813deg, 7%, 95%); | 418 | color: hsl(2.1582733813, 7%, 95%); |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | #wpadminbar .quicklinks .menupop ul li a:hover, | 421 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { |
| 450 | 450 | ||
| 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 453 | color: hsl(2.1582733813deg, 7%, 95%); | 453 | color: hsl(2.1582733813, 7%, 95%); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | /* Admin Bar: search */ | 456 | /* Admin Bar: search */ |
| 457 | #wpadminbar #adminbarsearch:before { | 457 | #wpadminbar #adminbarsearch:before { |
| 458 | color: hsl(2.1582733813deg, 7%, 95%); | 458 | color: hsl(2.1582733813, 7%, 95%); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 591 | 591 | ||
| 592 | /* Responsive Component */ | 592 | /* Responsive Component */ |
| 593 | div#wp-responsive-toggle a:before { | 593 | div#wp-responsive-toggle a:before { |
| 594 | color: hsl(2.1582733813deg, 7%, 95%); | 594 | color: hsl(2.1582733813, 7%, 95%); |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | .wp-responsive-open div#wp-responsive-toggle a { | 597 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { |
| 604 | } | 604 | } |
| 605 | 605 | ||
| 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 607 | color: hsl(2.1582733813deg, 7%, 95%); | 607 | color: hsl(2.1582733813, 7%, 95%); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | /* TinyMCE */ | 610 | /* TinyMCE */ |
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #dd823b; | 708 | border-bottom-color: #dd823b; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #be3631; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #cf4944; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #cf4944; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -192,7 +192,7 @@ textarea:focus { | ... | @@ -192,7 +192,7 @@ textarea:focus { |
| 192 | color: #ccaf0b; | 192 | color: #ccaf0b; |
| 193 | } | 193 | } |
| 194 | .wp-core-ui .wp-ui-text-icon { | 194 | .wp-core-ui .wp-ui-text-icon { |
| 195 | color: hsl(2.1582733813deg, 7%, 95%); | 195 | color: hsl(2.1582733813, 7%, 95%); |
| 196 | } | 196 | } |
| 197 | 197 | ||
| 198 | /* List tables */ | 198 | /* List tables */ |
| ... | @@ -233,7 +233,7 @@ textarea:focus { | ... | @@ -233,7 +233,7 @@ textarea:focus { |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | #adminmenu div.wp-menu-image:before { | 235 | #adminmenu div.wp-menu-image:before { |
| 236 | color: hsl(2.1582733813deg, 7%, 95%); | 236 | color: hsl(2.1582733813, 7%, 95%); |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | #adminmenu a:hover, | 239 | #adminmenu a:hover, |
| ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -346,7 +346,7 @@ ul#adminmenu > li.current > a.current:after { |
| 346 | 346 | ||
| 347 | /* Admin Menu: collapse button */ | 347 | /* Admin Menu: collapse button */ |
| 348 | #collapse-button { | 348 | #collapse-button { |
| 349 | color: hsl(2.1582733813deg, 7%, 95%); | 349 | color: hsl(2.1582733813, 7%, 95%); |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | #collapse-button:hover, | 352 | #collapse-button:hover, |
| ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -371,7 +371,7 @@ ul#adminmenu > li.current > a.current:after { |
| 371 | #wpadminbar .ab-icon:before, | 371 | #wpadminbar .ab-icon:before, |
| 372 | #wpadminbar .ab-item:before, | 372 | #wpadminbar .ab-item:before, |
| 373 | #wpadminbar .ab-item:after { | 373 | #wpadminbar .ab-item:after { |
| 374 | color: hsl(2.1582733813deg, 7%, 95%); | 374 | color: hsl(2.1582733813, 7%, 95%); |
| 375 | } | 375 | } |
| 376 | 376 | ||
| 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, | 377 | #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, |
| ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -415,7 +415,7 @@ ul#adminmenu > li.current > a.current:after { |
| 415 | 415 | ||
| 416 | #wpadminbar .quicklinks li .blavatar, | 416 | #wpadminbar .quicklinks li .blavatar, |
| 417 | #wpadminbar .menupop .menupop > .ab-item:before { | 417 | #wpadminbar .menupop .menupop > .ab-item:before { |
| 418 | color: hsl(2.1582733813deg, 7%, 95%); | 418 | color: hsl(2.1582733813, 7%, 95%); |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | #wpadminbar .quicklinks .menupop ul li a:hover, | 421 | #wpadminbar .quicklinks .menupop ul li a:hover, |
| ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -450,12 +450,12 @@ ul#adminmenu > li.current > a.current:after { |
| 450 | 450 | ||
| 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, | 451 | #wpadminbar.mobile .quicklinks .hover .ab-icon:before, |
| 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { | 452 | #wpadminbar.mobile .quicklinks .hover .ab-item:before { |
| 453 | color: hsl(2.1582733813deg, 7%, 95%); | 453 | color: hsl(2.1582733813, 7%, 95%); |
| 454 | } | 454 | } |
| 455 | 455 | ||
| 456 | /* Admin Bar: search */ | 456 | /* Admin Bar: search */ |
| 457 | #wpadminbar #adminbarsearch:before { | 457 | #wpadminbar #adminbarsearch:before { |
| 458 | color: hsl(2.1582733813deg, 7%, 95%); | 458 | color: hsl(2.1582733813, 7%, 95%); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { | 461 | #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { |
| ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { | ... | @@ -591,7 +591,7 @@ body.more-filters-opened .more-filters:focus:before { |
| 591 | 591 | ||
| 592 | /* Responsive Component */ | 592 | /* Responsive Component */ |
| 593 | div#wp-responsive-toggle a:before { | 593 | div#wp-responsive-toggle a:before { |
| 594 | color: hsl(2.1582733813deg, 7%, 95%); | 594 | color: hsl(2.1582733813, 7%, 95%); |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | .wp-responsive-open div#wp-responsive-toggle a { | 597 | .wp-responsive-open div#wp-responsive-toggle a { |
| ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { | ... | @@ -604,7 +604,7 @@ div#wp-responsive-toggle a:before { |
| 604 | } | 604 | } |
| 605 | 605 | ||
| 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { | 606 | .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
| 607 | color: hsl(2.1582733813deg, 7%, 95%); | 607 | color: hsl(2.1582733813, 7%, 95%); |
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | /* TinyMCE */ | 610 | /* TinyMCE */ |
| ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { | ... | @@ -707,18 +707,4 @@ div#wp-responsive-toggle a:before { |
| 707 | .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 { | 707 | .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 { |
| 708 | border-bottom-color: #dd823b; | 708 | border-bottom-color: #dd823b; |
| 709 | color: #0073aa; | 709 | color: #0073aa; |
| 710 | } | ||
| 711 | |||
| 712 | /* Welcome Panel */ | ||
| 713 | .welcome-panel { | ||
| 714 | background-color: #be3631; | ||
| 715 | } | ||
| 716 | |||
| 717 | .welcome-panel-header-image .curve, | ||
| 718 | .welcome-panel-header-image .dot { | ||
| 719 | fill: #cf4944; | ||
| 720 | } | ||
| 721 | |||
| 722 | [class*=welcome-panel-icon] { | ||
| 723 | background-color: #cf4944; | ||
| 724 | } | 710 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -139,6 +139,11 @@ | ... | @@ -139,6 +139,11 @@ |
| 139 | height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ | 139 | height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | .screen-reader-text + .dashicons-external { | ||
| 143 | margin-top: -1px; | ||
| 144 | margin-right: 2px; | ||
| 145 | } | ||
| 146 | |||
| 142 | .screen-reader-shortcut { | 147 | .screen-reader-shortcut { |
| 143 | position: absolute; | 148 | position: absolute; |
| 144 | top: -1000em; | 149 | top: -1000em; |
| ... | @@ -192,7 +197,6 @@ p.popular-tags, | ... | @@ -192,7 +197,6 @@ p.popular-tags, |
| 192 | .wp-editor-container, | 197 | .wp-editor-container, |
| 193 | .popular-tags, | 198 | .popular-tags, |
| 194 | .feature-filter, | 199 | .feature-filter, |
| 195 | .imgedit-group, | ||
| 196 | .comment-ays { | 200 | .comment-ays { |
| 197 | border: 1px solid #c3c4c7; | 201 | border: 1px solid #c3c4c7; |
| 198 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); | 202 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| ... | @@ -205,7 +209,6 @@ p.popular-tags, | ... | @@ -205,7 +209,6 @@ p.popular-tags, |
| 205 | .widgets-holder-wrap, | 209 | .widgets-holder-wrap, |
| 206 | .popular-tags, | 210 | .popular-tags, |
| 207 | .feature-filter, | 211 | .feature-filter, |
| 208 | .imgedit-group, | ||
| 209 | .comment-ays { | 212 | .comment-ays { |
| 210 | background: #fff; | 213 | background: #fff; |
| 211 | } | 214 | } |
| ... | @@ -556,6 +559,14 @@ code { | ... | @@ -556,6 +559,14 @@ code { |
| 556 | margin-right: 0; | 559 | margin-right: 0; |
| 557 | } | 560 | } |
| 558 | 561 | ||
| 562 | .js-update-details-toggle .dashicons { | ||
| 563 | text-decoration: none; | ||
| 564 | } | ||
| 565 | |||
| 566 | .js-update-details-toggle[aria-expanded="true"] .dashicons::before { | ||
| 567 | content: "\f142"; | ||
| 568 | } | ||
| 569 | |||
| 559 | .no-js .widefat thead .check-column input, | 570 | .no-js .widefat thead .check-column input, |
| 560 | .no-js .widefat tfoot .check-column input { | 571 | .no-js .widefat tfoot .check-column input { |
| 561 | display: none; | 572 | display: none; |
| ... | @@ -576,10 +587,6 @@ code { | ... | @@ -576,10 +587,6 @@ code { |
| 576 | margin: 10px 2px 0 20px; | 587 | margin: 10px 2px 0 20px; |
| 577 | } | 588 | } |
| 578 | 589 | ||
| 579 | .wrap.block-editor-no-js { | ||
| 580 | padding-right: 20px; | ||
| 581 | } | ||
| 582 | |||
| 583 | .wrap > h2:first-child, /* Back-compat for pre-4.4 */ | 590 | .wrap > h2:first-child, /* Back-compat for pre-4.4 */ |
| 584 | .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ | 591 | .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ |
| 585 | .postbox .inside h2, /* Back-compat for pre-4.4 */ | 592 | .postbox .inside h2, /* Back-compat for pre-4.4 */ |
| ... | @@ -618,20 +625,26 @@ code { | ... | @@ -618,20 +625,26 @@ code { |
| 618 | .wrap .add-new-h2:active, /* deprecated */ | 625 | .wrap .add-new-h2:active, /* deprecated */ |
| 619 | .wrap .page-title-action, | 626 | .wrap .page-title-action, |
| 620 | .wrap .page-title-action:active { | 627 | .wrap .page-title-action:active { |
| 621 | margin-right: 4px; | 628 | display: inline-block; |
| 622 | padding: 4px 8px; | ||
| 623 | position: relative; | 629 | position: relative; |
| 624 | top: -3px; | 630 | box-sizing: border-box; |
| 631 | cursor: pointer; | ||
| 632 | white-space: nowrap; | ||
| 625 | text-decoration: none; | 633 | text-decoration: none; |
| 626 | border: 1px solid #2271b1; | ||
| 627 | border-radius: 2px; | ||
| 628 | text-shadow: none; | 634 | text-shadow: none; |
| 629 | font-weight: 600; | 635 | top: -3px; |
| 636 | margin-right: 4px; | ||
| 637 | border: 1px solid #2271b1; | ||
| 638 | border-radius: 3px; | ||
| 639 | background: #f6f7f7; | ||
| 630 | font-size: 13px; | 640 | font-size: 13px; |
| 631 | line-height: normal; /* IE8-IE11 need this for buttons */ | 641 | font-weight: 400; |
| 642 | line-height: 2.15384615; | ||
| 632 | color: #2271b1; /* use the standard color used for buttons */ | 643 | color: #2271b1; /* use the standard color used for buttons */ |
| 633 | background: #f6f7f7; | 644 | padding: 0 10px; |
| 634 | cursor: pointer; | 645 | min-height: 30px; |
| 646 | -webkit-appearance: none; | ||
| 647 | |||
| 635 | } | 648 | } |
| 636 | 649 | ||
| 637 | .wrap .wp-heading-inline + .page-title-action { | 650 | .wrap .wp-heading-inline + .page-title-action { |
| ... | @@ -1084,7 +1097,6 @@ th.action-links { | ... | @@ -1084,7 +1097,6 @@ th.action-links { |
| 1084 | } | 1097 | } |
| 1085 | 1098 | ||
| 1086 | .wp-filter .search-form input[type="search"] { | 1099 | .wp-filter .search-form input[type="search"] { |
| 1087 | margin: 1px 0; | ||
| 1088 | width: 280px; | 1100 | width: 280px; |
| 1089 | max-width: 100%; | 1101 | max-width: 100%; |
| 1090 | } | 1102 | } |
| ... | @@ -3164,6 +3176,7 @@ img { | ... | @@ -3164,6 +3176,7 @@ img { |
| 3164 | font-family: Consolas, Monaco, monospace; | 3176 | font-family: Consolas, Monaco, monospace; |
| 3165 | font-size: 13px; | 3177 | font-size: 13px; |
| 3166 | background: #f6f7f7; | 3178 | background: #f6f7f7; |
| 3179 | -o-tab-size: 4; | ||
| 3167 | tab-size: 4; | 3180 | tab-size: 4; |
| 3168 | } | 3181 | } |
| 3169 | 3182 | ||
| ... | @@ -4066,6 +4079,7 @@ img { | ... | @@ -4066,6 +4079,7 @@ img { |
| 4066 | } | 4079 | } |
| 4067 | 4080 | ||
| 4068 | .wp-filter .search-form input[type="search"] { | 4081 | .wp-filter .search-form input[type="search"] { |
| 4082 | width: 100%; | ||
| 4069 | font-size: 1rem; | 4083 | font-size: 1rem; |
| 4070 | } | 4084 | } |
| 4071 | 4085 | ||
| ... | @@ -4119,9 +4133,16 @@ img { | ... | @@ -4119,9 +4133,16 @@ img { |
| 4119 | .nav-tab-active:focus:active { | 4133 | .nav-tab-active:focus:active { |
| 4120 | border-bottom: 1px solid #c3c4c7; | 4134 | border-bottom: 1px solid #c3c4c7; |
| 4121 | } | 4135 | } |
| 4136 | } | ||
| 4122 | 4137 | ||
| 4123 | .wp-filter .search-form input[type="search"] { | 4138 | @media screen and (max-width: 480px) { |
| 4124 | width: 100%; | 4139 | .metabox-prefs-container { |
| 4140 | display: grid; | ||
| 4141 | } | ||
| 4142 | |||
| 4143 | .metabox-prefs-container > * { | ||
| 4144 | display: inline-block; | ||
| 4145 | padding: 2px; | ||
| 4125 | } | 4146 | } |
| 4126 | } | 4147 | } |
| 4127 | 4148 | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -138,6 +138,11 @@ | ... | @@ -138,6 +138,11 @@ |
| 138 | height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ | 138 | height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ |
| 139 | } | 139 | } |
| 140 | 140 | ||
| 141 | .screen-reader-text + .dashicons-external { | ||
| 142 | margin-top: -1px; | ||
| 143 | margin-left: 2px; | ||
| 144 | } | ||
| 145 | |||
| 141 | .screen-reader-shortcut { | 146 | .screen-reader-shortcut { |
| 142 | position: absolute; | 147 | position: absolute; |
| 143 | top: -1000em; | 148 | top: -1000em; |
| ... | @@ -191,7 +196,6 @@ p.popular-tags, | ... | @@ -191,7 +196,6 @@ p.popular-tags, |
| 191 | .wp-editor-container, | 196 | .wp-editor-container, |
| 192 | .popular-tags, | 197 | .popular-tags, |
| 193 | .feature-filter, | 198 | .feature-filter, |
| 194 | .imgedit-group, | ||
| 195 | .comment-ays { | 199 | .comment-ays { |
| 196 | border: 1px solid #c3c4c7; | 200 | border: 1px solid #c3c4c7; |
| 197 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); | 201 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| ... | @@ -204,7 +208,6 @@ p.popular-tags, | ... | @@ -204,7 +208,6 @@ p.popular-tags, |
| 204 | .widgets-holder-wrap, | 208 | .widgets-holder-wrap, |
| 205 | .popular-tags, | 209 | .popular-tags, |
| 206 | .feature-filter, | 210 | .feature-filter, |
| 207 | .imgedit-group, | ||
| 208 | .comment-ays { | 211 | .comment-ays { |
| 209 | background: #fff; | 212 | background: #fff; |
| 210 | } | 213 | } |
| ... | @@ -555,6 +558,14 @@ code { | ... | @@ -555,6 +558,14 @@ code { |
| 555 | margin-left: 0; | 558 | margin-left: 0; |
| 556 | } | 559 | } |
| 557 | 560 | ||
| 561 | .js-update-details-toggle .dashicons { | ||
| 562 | text-decoration: none; | ||
| 563 | } | ||
| 564 | |||
| 565 | .js-update-details-toggle[aria-expanded="true"] .dashicons::before { | ||
| 566 | content: "\f142"; | ||
| 567 | } | ||
| 568 | |||
| 558 | .no-js .widefat thead .check-column input, | 569 | .no-js .widefat thead .check-column input, |
| 559 | .no-js .widefat tfoot .check-column input { | 570 | .no-js .widefat tfoot .check-column input { |
| 560 | display: none; | 571 | display: none; |
| ... | @@ -575,10 +586,6 @@ code { | ... | @@ -575,10 +586,6 @@ code { |
| 575 | margin: 10px 20px 0 2px; | 586 | margin: 10px 20px 0 2px; |
| 576 | } | 587 | } |
| 577 | 588 | ||
| 578 | .wrap.block-editor-no-js { | ||
| 579 | padding-left: 20px; | ||
| 580 | } | ||
| 581 | |||
| 582 | .wrap > h2:first-child, /* Back-compat for pre-4.4 */ | 589 | .wrap > h2:first-child, /* Back-compat for pre-4.4 */ |
| 583 | .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ | 590 | .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ |
| 584 | .postbox .inside h2, /* Back-compat for pre-4.4 */ | 591 | .postbox .inside h2, /* Back-compat for pre-4.4 */ |
| ... | @@ -617,20 +624,26 @@ code { | ... | @@ -617,20 +624,26 @@ code { |
| 617 | .wrap .add-new-h2:active, /* deprecated */ | 624 | .wrap .add-new-h2:active, /* deprecated */ |
| 618 | .wrap .page-title-action, | 625 | .wrap .page-title-action, |
| 619 | .wrap .page-title-action:active { | 626 | .wrap .page-title-action:active { |
| 620 | margin-left: 4px; | 627 | display: inline-block; |
| 621 | padding: 4px 8px; | ||
| 622 | position: relative; | 628 | position: relative; |
| 623 | top: -3px; | 629 | box-sizing: border-box; |
| 630 | cursor: pointer; | ||
| 631 | white-space: nowrap; | ||
| 624 | text-decoration: none; | 632 | text-decoration: none; |
| 625 | border: 1px solid #2271b1; | ||
| 626 | border-radius: 2px; | ||
| 627 | text-shadow: none; | 633 | text-shadow: none; |
| 628 | font-weight: 600; | 634 | top: -3px; |
| 635 | margin-left: 4px; | ||
| 636 | border: 1px solid #2271b1; | ||
| 637 | border-radius: 3px; | ||
| 638 | background: #f6f7f7; | ||
| 629 | font-size: 13px; | 639 | font-size: 13px; |
| 630 | line-height: normal; /* IE8-IE11 need this for buttons */ | 640 | font-weight: 400; |
| 641 | line-height: 2.15384615; | ||
| 631 | color: #2271b1; /* use the standard color used for buttons */ | 642 | color: #2271b1; /* use the standard color used for buttons */ |
| 632 | background: #f6f7f7; | 643 | padding: 0 10px; |
| 633 | cursor: pointer; | 644 | min-height: 30px; |
| 645 | -webkit-appearance: none; | ||
| 646 | |||
| 634 | } | 647 | } |
| 635 | 648 | ||
| 636 | .wrap .wp-heading-inline + .page-title-action { | 649 | .wrap .wp-heading-inline + .page-title-action { |
| ... | @@ -1083,7 +1096,6 @@ th.action-links { | ... | @@ -1083,7 +1096,6 @@ th.action-links { |
| 1083 | } | 1096 | } |
| 1084 | 1097 | ||
| 1085 | .wp-filter .search-form input[type="search"] { | 1098 | .wp-filter .search-form input[type="search"] { |
| 1086 | margin: 1px 0; | ||
| 1087 | width: 280px; | 1099 | width: 280px; |
| 1088 | max-width: 100%; | 1100 | max-width: 100%; |
| 1089 | } | 1101 | } |
| ... | @@ -3163,6 +3175,7 @@ img { | ... | @@ -3163,6 +3175,7 @@ img { |
| 3163 | font-family: Consolas, Monaco, monospace; | 3175 | font-family: Consolas, Monaco, monospace; |
| 3164 | font-size: 13px; | 3176 | font-size: 13px; |
| 3165 | background: #f6f7f7; | 3177 | background: #f6f7f7; |
| 3178 | -o-tab-size: 4; | ||
| 3166 | tab-size: 4; | 3179 | tab-size: 4; |
| 3167 | } | 3180 | } |
| 3168 | 3181 | ||
| ... | @@ -4065,6 +4078,7 @@ img { | ... | @@ -4065,6 +4078,7 @@ img { |
| 4065 | } | 4078 | } |
| 4066 | 4079 | ||
| 4067 | .wp-filter .search-form input[type="search"] { | 4080 | .wp-filter .search-form input[type="search"] { |
| 4081 | width: 100%; | ||
| 4068 | font-size: 1rem; | 4082 | font-size: 1rem; |
| 4069 | } | 4083 | } |
| 4070 | 4084 | ||
| ... | @@ -4118,9 +4132,16 @@ img { | ... | @@ -4118,9 +4132,16 @@ img { |
| 4118 | .nav-tab-active:focus:active { | 4132 | .nav-tab-active:focus:active { |
| 4119 | border-bottom: 1px solid #c3c4c7; | 4133 | border-bottom: 1px solid #c3c4c7; |
| 4120 | } | 4134 | } |
| 4135 | } | ||
| 4121 | 4136 | ||
| 4122 | .wp-filter .search-form input[type="search"] { | 4137 | @media screen and (max-width: 480px) { |
| 4123 | width: 100%; | 4138 | .metabox-prefs-container { |
| 4139 | display: grid; | ||
| 4140 | } | ||
| 4141 | |||
| 4142 | .metabox-prefs-container > * { | ||
| 4143 | display: inline-block; | ||
| 4144 | padding: 2px; | ||
| 4124 | } | 4145 | } |
| 4125 | } | 4146 | } |
| 4126 | 4147 | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -1605,6 +1605,7 @@ p.customize-section-description { | ... | @@ -1605,6 +1605,7 @@ p.customize-section-description { |
| 1605 | font-family: Consolas, Monaco, monospace; | 1605 | font-family: Consolas, Monaco, monospace; |
| 1606 | font-size: 12px; | 1606 | font-size: 12px; |
| 1607 | padding: 6px 8px; | 1607 | padding: 6px 8px; |
| 1608 | -o-tab-size: 2; | ||
| 1608 | tab-size: 2; | 1609 | tab-size: 2; |
| 1609 | } | 1610 | } |
| 1610 | .customize-control-code_editor textarea, | 1611 | .customize-control-code_editor textarea, |
| ... | @@ -2318,7 +2319,7 @@ p.customize-section-description { | ... | @@ -2318,7 +2319,7 @@ p.customize-section-description { |
| 2318 | 2319 | ||
| 2319 | .wp-customizer .theme-overlay .theme-actions { | 2320 | .wp-customizer .theme-overlay .theme-actions { |
| 2320 | text-align: left; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ | 2321 | text-align: left; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ |
| 2321 | padding: 10px 25px; | 2322 | padding: 10px 25px 5px; |
| 2322 | background: #f0f0f1; | 2323 | background: #f0f0f1; |
| 2323 | border-top: 1px solid #dcdcde; | 2324 | border-top: 1px solid #dcdcde; |
| 2324 | } | 2325 | } |
| ... | @@ -2327,13 +2328,6 @@ p.customize-section-description { | ... | @@ -2327,13 +2328,6 @@ p.customize-section-description { |
| 2327 | margin-right: 8px; | 2328 | margin-right: 8px; |
| 2328 | } | 2329 | } |
| 2329 | 2330 | ||
| 2330 | .control-panel-themes .theme-actions .delete-theme { | ||
| 2331 | right: 15px; /* these override themes.css on mobile */ | ||
| 2332 | left: auto; | ||
| 2333 | bottom: auto; | ||
| 2334 | position: absolute; | ||
| 2335 | } | ||
| 2336 | |||
| 2337 | .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { | 2331 | .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { |
| 2338 | overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ | 2332 | overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ |
| 2339 | } | 2333 | } | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -1604,6 +1604,7 @@ p.customize-section-description { | ... | @@ -1604,6 +1604,7 @@ p.customize-section-description { |
| 1604 | font-family: Consolas, Monaco, monospace; | 1604 | font-family: Consolas, Monaco, monospace; |
| 1605 | font-size: 12px; | 1605 | font-size: 12px; |
| 1606 | padding: 6px 8px; | 1606 | padding: 6px 8px; |
| 1607 | -o-tab-size: 2; | ||
| 1607 | tab-size: 2; | 1608 | tab-size: 2; |
| 1608 | } | 1609 | } |
| 1609 | .customize-control-code_editor textarea, | 1610 | .customize-control-code_editor textarea, |
| ... | @@ -2317,7 +2318,7 @@ p.customize-section-description { | ... | @@ -2317,7 +2318,7 @@ p.customize-section-description { |
| 2317 | 2318 | ||
| 2318 | .wp-customizer .theme-overlay .theme-actions { | 2319 | .wp-customizer .theme-overlay .theme-actions { |
| 2319 | text-align: right; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ | 2320 | text-align: right; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ |
| 2320 | padding: 10px 25px; | 2321 | padding: 10px 25px 5px; |
| 2321 | background: #f0f0f1; | 2322 | background: #f0f0f1; |
| 2322 | border-top: 1px solid #dcdcde; | 2323 | border-top: 1px solid #dcdcde; |
| 2323 | } | 2324 | } |
| ... | @@ -2326,13 +2327,6 @@ p.customize-section-description { | ... | @@ -2326,13 +2327,6 @@ p.customize-section-description { |
| 2326 | margin-left: 8px; | 2327 | margin-left: 8px; |
| 2327 | } | 2328 | } |
| 2328 | 2329 | ||
| 2329 | .control-panel-themes .theme-actions .delete-theme { | ||
| 2330 | left: 15px; /* these override themes.css on mobile */ | ||
| 2331 | right: auto; | ||
| 2332 | bottom: auto; | ||
| 2333 | position: absolute; | ||
| 2334 | } | ||
| 2335 | |||
| 2336 | .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { | 2330 | .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { |
| 2337 | overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ | 2331 | overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ |
| 2338 | } | 2332 | } | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -121,7 +121,7 @@ | ... | @@ -121,7 +121,7 @@ |
| 121 | position: relative; | 121 | position: relative; |
| 122 | overflow: auto; | 122 | overflow: auto; |
| 123 | margin: 16px 0; | 123 | margin: 16px 0; |
| 124 | background-color: #1d35b4; | 124 | background-color: #151515; |
| 125 | font-size: 14px; | 125 | font-size: 14px; |
| 126 | line-height: 1.3; | 126 | line-height: 1.3; |
| 127 | clear: both; | 127 | clear: both; |
| ... | @@ -559,6 +559,10 @@ | ... | @@ -559,6 +559,10 @@ |
| 559 | display: block; | 559 | display: block; |
| 560 | } | 560 | } |
| 561 | 561 | ||
| 562 | .community-events .ce-separator::before { | ||
| 563 | content: "\2022"; | ||
| 564 | } | ||
| 565 | |||
| 562 | .event-icon { | 566 | .event-icon { |
| 563 | height: 18px; | 567 | height: 18px; |
| 564 | padding-left: 10px; | 568 | padding-left: 10px; |
| ... | @@ -890,31 +894,32 @@ body #dashboard-widgets .postbox form .submit { | ... | @@ -890,31 +894,32 @@ body #dashboard-widgets .postbox form .submit { |
| 890 | 894 | ||
| 891 | #future-posts ul, | 895 | #future-posts ul, |
| 892 | #published-posts ul { | 896 | #published-posts ul { |
| 893 | clear: both; | 897 | margin: 8px -12px 0 -12px; |
| 894 | margin-bottom: 0; | ||
| 895 | } | 898 | } |
| 896 | 899 | ||
| 897 | #future-posts li, | 900 | #future-posts li, |
| 898 | #published-posts li { | 901 | #published-posts li { |
| 899 | margin-bottom: 8px; | 902 | display: grid; |
| 903 | grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto; | ||
| 904 | column-gap: 10px; | ||
| 905 | color: #646970; | ||
| 906 | padding: 4px 12px; | ||
| 900 | } | 907 | } |
| 901 | 908 | ||
| 902 | #future-posts ul span, | 909 | #future-posts li:nth-child(odd), |
| 903 | #published-posts ul span { | 910 | #published-posts li:nth-child(odd) { |
| 904 | display: inline-block; | 911 | background-color: #f6f7f7; |
| 905 | margin-left: 5px; | ||
| 906 | min-width: 150px; | ||
| 907 | color: #646970; | ||
| 908 | } | 912 | } |
| 909 | 913 | ||
| 910 | .activity-block { | 914 | .activity-block { |
| 911 | border-bottom: 1px solid #f0f0f1; | 915 | border-bottom: 1px solid #f0f0f1; |
| 912 | margin: 0 -12px; | 916 | margin: 0 -12px 6px -12px; |
| 913 | padding: 8px 12px 4px; | 917 | padding: 8px 12px 4px; |
| 914 | } | 918 | } |
| 915 | 919 | ||
| 916 | .activity-block:last-child { | 920 | .activity-block:last-child { |
| 917 | border-bottom: none; | 921 | border-bottom: none; |
| 922 | margin-bottom: 0; | ||
| 918 | } | 923 | } |
| 919 | 924 | ||
| 920 | .activity-block .subsubsub li { | 925 | .activity-block .subsubsub li { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -120,7 +120,7 @@ | ... | @@ -120,7 +120,7 @@ |
| 120 | position: relative; | 120 | position: relative; |
| 121 | overflow: auto; | 121 | overflow: auto; |
| 122 | margin: 16px 0; | 122 | margin: 16px 0; |
| 123 | background-color: #1d35b4; | 123 | background-color: #151515; |
| 124 | font-size: 14px; | 124 | font-size: 14px; |
| 125 | line-height: 1.3; | 125 | line-height: 1.3; |
| 126 | clear: both; | 126 | clear: both; |
| ... | @@ -558,6 +558,10 @@ | ... | @@ -558,6 +558,10 @@ |
| 558 | display: block; | 558 | display: block; |
| 559 | } | 559 | } |
| 560 | 560 | ||
| 561 | .community-events .ce-separator::before { | ||
| 562 | content: "\2022"; | ||
| 563 | } | ||
| 564 | |||
| 561 | .event-icon { | 565 | .event-icon { |
| 562 | height: 18px; | 566 | height: 18px; |
| 563 | padding-right: 10px; | 567 | padding-right: 10px; |
| ... | @@ -889,31 +893,32 @@ body #dashboard-widgets .postbox form .submit { | ... | @@ -889,31 +893,32 @@ body #dashboard-widgets .postbox form .submit { |
| 889 | 893 | ||
| 890 | #future-posts ul, | 894 | #future-posts ul, |
| 891 | #published-posts ul { | 895 | #published-posts ul { |
| 892 | clear: both; | 896 | margin: 8px -12px 0 -12px; |
| 893 | margin-bottom: 0; | ||
| 894 | } | 897 | } |
| 895 | 898 | ||
| 896 | #future-posts li, | 899 | #future-posts li, |
| 897 | #published-posts li { | 900 | #published-posts li { |
| 898 | margin-bottom: 8px; | 901 | display: grid; |
| 902 | grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto; | ||
| 903 | column-gap: 10px; | ||
| 904 | color: #646970; | ||
| 905 | padding: 4px 12px; | ||
| 899 | } | 906 | } |
| 900 | 907 | ||
| 901 | #future-posts ul span, | 908 | #future-posts li:nth-child(odd), |
| 902 | #published-posts ul span { | 909 | #published-posts li:nth-child(odd) { |
| 903 | display: inline-block; | 910 | background-color: #f6f7f7; |
| 904 | margin-right: 5px; | ||
| 905 | min-width: 150px; | ||
| 906 | color: #646970; | ||
| 907 | } | 911 | } |
| 908 | 912 | ||
| 909 | .activity-block { | 913 | .activity-block { |
| 910 | border-bottom: 1px solid #f0f0f1; | 914 | border-bottom: 1px solid #f0f0f1; |
| 911 | margin: 0 -12px; | 915 | margin: 0 -12px 6px -12px; |
| 912 | padding: 8px 12px 4px; | 916 | padding: 8px 12px 4px; |
| 913 | } | 917 | } |
| 914 | 918 | ||
| 915 | .activity-block:last-child { | 919 | .activity-block:last-child { |
| 916 | border-bottom: none; | 920 | border-bottom: none; |
| 921 | margin-bottom: 0; | ||
| 917 | } | 922 | } |
| 918 | 923 | ||
| 919 | .activity-block .subsubsub li { | 924 | .activity-block .subsubsub li { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -1069,6 +1069,10 @@ form#tags-filter { | ... | @@ -1069,6 +1069,10 @@ form#tags-filter { |
| 1069 | padding: 0 8px 8px; | 1069 | padding: 0 8px 8px; |
| 1070 | } | 1070 | } |
| 1071 | 1071 | ||
| 1072 | #postcustom #postcustomstuff .add-custom-field { | ||
| 1073 | padding: 12px 8px 8px; | ||
| 1074 | } | ||
| 1075 | |||
| 1072 | #side-sortables #postcustom #postcustomstuff .submit { | 1076 | #side-sortables #postcustom #postcustomstuff .submit { |
| 1073 | margin: 0; | 1077 | margin: 0; |
| 1074 | padding: 0; | 1078 | padding: 0; |
| ... | @@ -1119,7 +1123,8 @@ form#tags-filter { | ... | @@ -1119,7 +1123,8 @@ form#tags-filter { |
| 1119 | width: auto; | 1123 | width: auto; |
| 1120 | } | 1124 | } |
| 1121 | 1125 | ||
| 1122 | #postcustomstuff #newmetaleft a { | 1126 | #postcustomstuff #newmetaleft a, |
| 1127 | #postcustomstuff #newmeta-button { | ||
| 1123 | display: inline-block; | 1128 | display: inline-block; |
| 1124 | margin: 0 8px 8px; | 1129 | margin: 0 8px 8px; |
| 1125 | text-decoration: none; | 1130 | text-decoration: none; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -1068,6 +1068,10 @@ form#tags-filter { | ... | @@ -1068,6 +1068,10 @@ form#tags-filter { |
| 1068 | padding: 0 8px 8px; | 1068 | padding: 0 8px 8px; |
| 1069 | } | 1069 | } |
| 1070 | 1070 | ||
| 1071 | #postcustom #postcustomstuff .add-custom-field { | ||
| 1072 | padding: 12px 8px 8px; | ||
| 1073 | } | ||
| 1074 | |||
| 1071 | #side-sortables #postcustom #postcustomstuff .submit { | 1075 | #side-sortables #postcustom #postcustomstuff .submit { |
| 1072 | margin: 0; | 1076 | margin: 0; |
| 1073 | padding: 0; | 1077 | padding: 0; |
| ... | @@ -1118,7 +1122,8 @@ form#tags-filter { | ... | @@ -1118,7 +1122,8 @@ form#tags-filter { |
| 1118 | width: auto; | 1122 | width: auto; |
| 1119 | } | 1123 | } |
| 1120 | 1124 | ||
| 1121 | #postcustomstuff #newmetaleft a { | 1125 | #postcustomstuff #newmetaleft a, |
| 1126 | #postcustomstuff #newmeta-button { | ||
| 1122 | display: inline-block; | 1127 | display: inline-block; |
| 1123 | margin: 0 8px 8px; | 1128 | margin: 0 8px 8px; |
| 1124 | text-decoration: none; | 1129 | text-decoration: none; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -548,10 +548,67 @@ fieldset label, | ... | @@ -548,10 +548,67 @@ fieldset label, |
| 548 | 548 | ||
| 549 | .wp-generate-pw { | 549 | .wp-generate-pw { |
| 550 | margin-top: 1em; | 550 | margin-top: 1em; |
| 551 | position: relative; | ||
| 552 | } | ||
| 553 | |||
| 554 | .wp-pwd button { | ||
| 555 | height: min-content; | ||
| 556 | } | ||
| 557 | |||
| 558 | .wp-pwd button.pwd-toggle .dashicons { | ||
| 559 | position: relative; | ||
| 560 | top: 0.25rem; | ||
| 551 | } | 561 | } |
| 552 | 562 | ||
| 553 | .wp-pwd { | 563 | .wp-pwd { |
| 554 | margin-top: 1em; | 564 | margin-top: 1em; |
| 565 | position: relative; | ||
| 566 | } | ||
| 567 | |||
| 568 | .mailserver-pass-wrap .wp-pwd { | ||
| 569 | display: inline-block; | ||
| 570 | margin-top: 0; | ||
| 571 | } | ||
| 572 | |||
| 573 | /* rtl:ignore */ | ||
| 574 | #mailserver_pass { | ||
| 575 | padding-right: 2.5rem; | ||
| 576 | } | ||
| 577 | |||
| 578 | /* rtl:ignore */ | ||
| 579 | .mailserver-pass-wrap .button.wp-hide-pw { | ||
| 580 | background: transparent; | ||
| 581 | border: 1px solid transparent; | ||
| 582 | box-shadow: none; | ||
| 583 | font-size: 14px; | ||
| 584 | line-height: 2; | ||
| 585 | width: 2.5rem; | ||
| 586 | min-width: 40px; | ||
| 587 | margin: 0; | ||
| 588 | padding: 0 9px; | ||
| 589 | position: absolute; | ||
| 590 | right: 0; | ||
| 591 | top: 0; | ||
| 592 | } | ||
| 593 | |||
| 594 | .mailserver-pass-wrap .button.wp-hide-pw:hover { | ||
| 595 | background: transparent; | ||
| 596 | border-color: transparent; | ||
| 597 | } | ||
| 598 | |||
| 599 | .mailserver-pass-wrap .button.wp-hide-pw:focus { | ||
| 600 | background: transparent; | ||
| 601 | border-color: #3582c4; | ||
| 602 | border-radius: 4px; | ||
| 603 | box-shadow: 0 0 0 1px #3582c4; | ||
| 604 | /* Only visible in Windows High Contrast mode */ | ||
| 605 | outline: 2px solid transparent; | ||
| 606 | } | ||
| 607 | |||
| 608 | .mailserver-pass-wrap .button.wp-hide-pw:active { | ||
| 609 | background: transparent; | ||
| 610 | box-shadow: none; | ||
| 611 | transform: none; | ||
| 555 | } | 612 | } |
| 556 | 613 | ||
| 557 | #misc-publishing-actions label { | 614 | #misc-publishing-actions label { |
| ... | @@ -594,6 +651,10 @@ fieldset label, | ... | @@ -594,6 +651,10 @@ fieldset label, |
| 594 | opacity: 1; | 651 | opacity: 1; |
| 595 | } | 652 | } |
| 596 | 653 | ||
| 654 | .password-input-wrapper { | ||
| 655 | display: inline-block; | ||
| 656 | } | ||
| 657 | |||
| 597 | .password-input-wrapper input { | 658 | .password-input-wrapper input { |
| 598 | font-family: Consolas, Monaco, monospace; | 659 | font-family: Consolas, Monaco, monospace; |
| 599 | } | 660 | } |
| ... | @@ -672,7 +733,7 @@ input[type="text"].ui-autocomplete-loading, | ... | @@ -672,7 +733,7 @@ input[type="text"].ui-autocomplete-loading, |
| 672 | input[type="email"].ui-autocomplete-loading { | 733 | input[type="email"].ui-autocomplete-loading { |
| 673 | background-image: url(../images/loading.gif); | 734 | background-image: url(../images/loading.gif); |
| 674 | background-repeat: no-repeat; | 735 | background-repeat: no-repeat; |
| 675 | background-position: left center; | 736 | background-position: left 5px center; |
| 676 | visibility: visible; | 737 | visibility: visible; |
| 677 | } | 738 | } |
| 678 | 739 | ||
| ... | @@ -1584,13 +1645,15 @@ table.form-table td .updated p { | ... | @@ -1584,13 +1645,15 @@ table.form-table td .updated p { |
| 1584 | padding: 8px; | 1645 | padding: 8px; |
| 1585 | } | 1646 | } |
| 1586 | 1647 | ||
| 1648 | .password-input-wrapper { | ||
| 1649 | display: block; | ||
| 1650 | } | ||
| 1651 | |||
| 1587 | p.search-box { | 1652 | p.search-box { |
| 1588 | float: none; | 1653 | float: none; |
| 1589 | position: absolute; | 1654 | width: 100%; |
| 1590 | bottom: 0; | ||
| 1591 | width: 98%; | ||
| 1592 | height: 90px; | ||
| 1593 | margin-bottom: 20px; | 1655 | margin-bottom: 20px; |
| 1656 | display: flex; | ||
| 1594 | } | 1657 | } |
| 1595 | 1658 | ||
| 1596 | p.search-box input[name="s"] { | 1659 | p.search-box input[name="s"] { |
| ... | @@ -1646,6 +1709,11 @@ table.form-table td .updated p { | ... | @@ -1646,6 +1709,11 @@ table.form-table td .updated p { |
| 1646 | font-size: 14px; | 1709 | font-size: 14px; |
| 1647 | } | 1710 | } |
| 1648 | 1711 | ||
| 1712 | .form-table td > label:first-child { | ||
| 1713 | display: inline-block; | ||
| 1714 | margin-top: 0.35em; | ||
| 1715 | } | ||
| 1716 | |||
| 1649 | .background-position-control .button-group > label { | 1717 | .background-position-control .button-group > label { |
| 1650 | font-size: 0; | 1718 | font-size: 0; |
| 1651 | } | 1719 | } |
| ... | @@ -1722,6 +1790,15 @@ table.form-table td .updated p { | ... | @@ -1722,6 +1790,15 @@ table.form-table td .updated p { |
| 1722 | display: inline-block; | 1790 | display: inline-block; |
| 1723 | } | 1791 | } |
| 1724 | 1792 | ||
| 1793 | .mailserver-pass-wrap .wp-pwd { | ||
| 1794 | display: block; | ||
| 1795 | } | ||
| 1796 | |||
| 1797 | /* rtl:ignore */ | ||
| 1798 | #mailserver_pass { | ||
| 1799 | padding-left: 10px; | ||
| 1800 | } | ||
| 1801 | |||
| 1725 | .options-general-php input[type="text"].small-text { | 1802 | .options-general-php input[type="text"].small-text { |
| 1726 | max-width: 6.25em; | 1803 | max-width: 6.25em; |
| 1727 | margin: 0; | 1804 | margin: 0; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -547,10 +547,67 @@ fieldset label, | ... | @@ -547,10 +547,67 @@ fieldset label, |
| 547 | 547 | ||
| 548 | .wp-generate-pw { | 548 | .wp-generate-pw { |
| 549 | margin-top: 1em; | 549 | margin-top: 1em; |
| 550 | position: relative; | ||
| 551 | } | ||
| 552 | |||
| 553 | .wp-pwd button { | ||
| 554 | height: min-content; | ||
| 555 | } | ||
| 556 | |||
| 557 | .wp-pwd button.pwd-toggle .dashicons { | ||
| 558 | position: relative; | ||
| 559 | top: 0.25rem; | ||
| 550 | } | 560 | } |
| 551 | 561 | ||
| 552 | .wp-pwd { | 562 | .wp-pwd { |
| 553 | margin-top: 1em; | 563 | margin-top: 1em; |
| 564 | position: relative; | ||
| 565 | } | ||
| 566 | |||
| 567 | .mailserver-pass-wrap .wp-pwd { | ||
| 568 | display: inline-block; | ||
| 569 | margin-top: 0; | ||
| 570 | } | ||
| 571 | |||
| 572 | /* rtl:ignore */ | ||
| 573 | #mailserver_pass { | ||
| 574 | padding-right: 2.5rem; | ||
| 575 | } | ||
| 576 | |||
| 577 | /* rtl:ignore */ | ||
| 578 | .mailserver-pass-wrap .button.wp-hide-pw { | ||
| 579 | background: transparent; | ||
| 580 | border: 1px solid transparent; | ||
| 581 | box-shadow: none; | ||
| 582 | font-size: 14px; | ||
| 583 | line-height: 2; | ||
| 584 | width: 2.5rem; | ||
| 585 | min-width: 40px; | ||
| 586 | margin: 0; | ||
| 587 | padding: 0 9px; | ||
| 588 | position: absolute; | ||
| 589 | right: 0; | ||
| 590 | top: 0; | ||
| 591 | } | ||
| 592 | |||
| 593 | .mailserver-pass-wrap .button.wp-hide-pw:hover { | ||
| 594 | background: transparent; | ||
| 595 | border-color: transparent; | ||
| 596 | } | ||
| 597 | |||
| 598 | .mailserver-pass-wrap .button.wp-hide-pw:focus { | ||
| 599 | background: transparent; | ||
| 600 | border-color: #3582c4; | ||
| 601 | border-radius: 4px; | ||
| 602 | box-shadow: 0 0 0 1px #3582c4; | ||
| 603 | /* Only visible in Windows High Contrast mode */ | ||
| 604 | outline: 2px solid transparent; | ||
| 605 | } | ||
| 606 | |||
| 607 | .mailserver-pass-wrap .button.wp-hide-pw:active { | ||
| 608 | background: transparent; | ||
| 609 | box-shadow: none; | ||
| 610 | transform: none; | ||
| 554 | } | 611 | } |
| 555 | 612 | ||
| 556 | #misc-publishing-actions label { | 613 | #misc-publishing-actions label { |
| ... | @@ -593,6 +650,10 @@ fieldset label, | ... | @@ -593,6 +650,10 @@ fieldset label, |
| 593 | opacity: 1; | 650 | opacity: 1; |
| 594 | } | 651 | } |
| 595 | 652 | ||
| 653 | .password-input-wrapper { | ||
| 654 | display: inline-block; | ||
| 655 | } | ||
| 656 | |||
| 596 | .password-input-wrapper input { | 657 | .password-input-wrapper input { |
| 597 | font-family: Consolas, Monaco, monospace; | 658 | font-family: Consolas, Monaco, monospace; |
| 598 | } | 659 | } |
| ... | @@ -671,7 +732,7 @@ input[type="text"].ui-autocomplete-loading, | ... | @@ -671,7 +732,7 @@ input[type="text"].ui-autocomplete-loading, |
| 671 | input[type="email"].ui-autocomplete-loading { | 732 | input[type="email"].ui-autocomplete-loading { |
| 672 | background-image: url(../images/loading.gif); | 733 | background-image: url(../images/loading.gif); |
| 673 | background-repeat: no-repeat; | 734 | background-repeat: no-repeat; |
| 674 | background-position: right center; | 735 | background-position: right 5px center; |
| 675 | visibility: visible; | 736 | visibility: visible; |
| 676 | } | 737 | } |
| 677 | 738 | ||
| ... | @@ -1583,13 +1644,15 @@ table.form-table td .updated p { | ... | @@ -1583,13 +1644,15 @@ table.form-table td .updated p { |
| 1583 | padding: 8px; | 1644 | padding: 8px; |
| 1584 | } | 1645 | } |
| 1585 | 1646 | ||
| 1647 | .password-input-wrapper { | ||
| 1648 | display: block; | ||
| 1649 | } | ||
| 1650 | |||
| 1586 | p.search-box { | 1651 | p.search-box { |
| 1587 | float: none; | 1652 | float: none; |
| 1588 | position: absolute; | 1653 | width: 100%; |
| 1589 | bottom: 0; | ||
| 1590 | width: 98%; | ||
| 1591 | height: 90px; | ||
| 1592 | margin-bottom: 20px; | 1654 | margin-bottom: 20px; |
| 1655 | display: flex; | ||
| 1593 | } | 1656 | } |
| 1594 | 1657 | ||
| 1595 | p.search-box input[name="s"] { | 1658 | p.search-box input[name="s"] { |
| ... | @@ -1645,6 +1708,11 @@ table.form-table td .updated p { | ... | @@ -1645,6 +1708,11 @@ table.form-table td .updated p { |
| 1645 | font-size: 14px; | 1708 | font-size: 14px; |
| 1646 | } | 1709 | } |
| 1647 | 1710 | ||
| 1711 | .form-table td > label:first-child { | ||
| 1712 | display: inline-block; | ||
| 1713 | margin-top: 0.35em; | ||
| 1714 | } | ||
| 1715 | |||
| 1648 | .background-position-control .button-group > label { | 1716 | .background-position-control .button-group > label { |
| 1649 | font-size: 0; | 1717 | font-size: 0; |
| 1650 | } | 1718 | } |
| ... | @@ -1721,6 +1789,15 @@ table.form-table td .updated p { | ... | @@ -1721,6 +1789,15 @@ table.form-table td .updated p { |
| 1721 | display: inline-block; | 1789 | display: inline-block; |
| 1722 | } | 1790 | } |
| 1723 | 1791 | ||
| 1792 | .mailserver-pass-wrap .wp-pwd { | ||
| 1793 | display: block; | ||
| 1794 | } | ||
| 1795 | |||
| 1796 | /* rtl:ignore */ | ||
| 1797 | #mailserver_pass { | ||
| 1798 | padding-left: 10px; | ||
| 1799 | } | ||
| 1800 | |||
| 1724 | .options-general-php input[type="text"].small-text { | 1801 | .options-general-php input[type="text"].small-text { |
| 1725 | max-width: 6.25em; | 1802 | max-width: 6.25em; |
| 1726 | margin: 0; | 1803 | margin: 0; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -132,7 +132,7 @@ textarea { | ... | @@ -132,7 +132,7 @@ textarea { |
| 132 | font-size: 14px; | 132 | font-size: 14px; |
| 133 | text-align: right; | 133 | text-align: right; |
| 134 | padding: 10px 0 10px 20px; | 134 | padding: 10px 0 10px 20px; |
| 135 | width: 140px; | 135 | width: 115px; |
| 136 | vertical-align: top; | 136 | vertical-align: top; |
| 137 | } | 137 | } |
| 138 | 138 | ||
| ... | @@ -146,12 +146,30 @@ textarea { | ... | @@ -146,12 +146,30 @@ textarea { |
| 146 | font-size: 11px; | 146 | font-size: 11px; |
| 147 | } | 147 | } |
| 148 | 148 | ||
| 149 | .form-table .setup-description { | ||
| 150 | margin: 4px 0 0; | ||
| 151 | line-height: 1.6; | ||
| 152 | } | ||
| 153 | |||
| 149 | .form-table input { | 154 | .form-table input { |
| 150 | line-height: 1.33333333; | 155 | line-height: 1.33333333; |
| 151 | font-size: 15px; | 156 | font-size: 15px; |
| 152 | padding: 3px 5px; | 157 | padding: 3px 5px; |
| 153 | } | 158 | } |
| 154 | 159 | ||
| 160 | .wp-pwd { | ||
| 161 | margin-top: 0; | ||
| 162 | } | ||
| 163 | |||
| 164 | .form-table .wp-pwd { | ||
| 165 | display: flex; | ||
| 166 | column-gap: 4px; | ||
| 167 | } | ||
| 168 | |||
| 169 | .form-table .password-input-wrapper { | ||
| 170 | width: 100%; | ||
| 171 | } | ||
| 172 | |||
| 155 | input, | 173 | input, |
| 156 | submit { | 174 | submit { |
| 157 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | 175 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| ... | @@ -162,7 +180,7 @@ submit { | ... | @@ -162,7 +180,7 @@ submit { |
| 162 | .form-table input[type=url], | 180 | .form-table input[type=url], |
| 163 | .form-table input[type=password], | 181 | .form-table input[type=password], |
| 164 | #pass-strength-result { | 182 | #pass-strength-result { |
| 165 | width: 218px; | 183 | width: 100%; |
| 166 | } | 184 | } |
| 167 | 185 | ||
| 168 | .form-table th p { | 186 | .form-table th p { |
| ... | @@ -287,6 +305,10 @@ body.rtl, | ... | @@ -287,6 +305,10 @@ body.rtl, |
| 287 | box-sizing: border-box; | 305 | box-sizing: border-box; |
| 288 | } | 306 | } |
| 289 | 307 | ||
| 308 | #pwd { | ||
| 309 | padding-left: 2.5rem; | ||
| 310 | } | ||
| 311 | |||
| 290 | .wp-pwd #pass1 { | 312 | .wp-pwd #pass1 { |
| 291 | padding-left: 50px; | 313 | padding-left: 50px; |
| 292 | } | 314 | } | ... | ... |
| 1 | /*! This file is auto-generated */ | 1 | /*! This file is auto-generated */ |
| 2 | 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 | ... | \ No newline at end of file |
| 2 | 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:115px;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 .setup-description{margin:4px 0 0;line-height:1.6}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}.wp-pwd{margin-top:0}.form-table .wp-pwd{display:flex;column-gap:4px}.form-table .password-input-wrapper{width:100%}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:100%}.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}#pwd{padding-left:2.5rem}.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 | ... | \ No newline at end of file | ... | ... |
| ... | @@ -131,7 +131,7 @@ textarea { | ... | @@ -131,7 +131,7 @@ textarea { |
| 131 | font-size: 14px; | 131 | font-size: 14px; |
| 132 | text-align: left; | 132 | text-align: left; |
| 133 | padding: 10px 20px 10px 0; | 133 | padding: 10px 20px 10px 0; |
| 134 | width: 140px; | 134 | width: 115px; |
| 135 | vertical-align: top; | 135 | vertical-align: top; |
| 136 | } | 136 | } |
| 137 | 137 | ||
| ... | @@ -145,12 +145,30 @@ textarea { | ... | @@ -145,12 +145,30 @@ textarea { |
| 145 | font-size: 11px; | 145 | font-size: 11px; |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | .form-table .setup-description { | ||
| 149 | margin: 4px 0 0; | ||
| 150 | line-height: 1.6; | ||
| 151 | } | ||
| 152 | |||
| 148 | .form-table input { | 153 | .form-table input { |
| 149 | line-height: 1.33333333; | 154 | line-height: 1.33333333; |
| 150 | font-size: 15px; | 155 | font-size: 15px; |
| 151 | padding: 3px 5px; | 156 | padding: 3px 5px; |
| 152 | } | 157 | } |
| 153 | 158 | ||
| 159 | .wp-pwd { | ||
| 160 | margin-top: 0; | ||
| 161 | } | ||
| 162 | |||
| 163 | .form-table .wp-pwd { | ||
| 164 | display: flex; | ||
| 165 | column-gap: 4px; | ||
| 166 | } | ||
| 167 | |||
| 168 | .form-table .password-input-wrapper { | ||
| 169 | width: 100%; | ||
| 170 | } | ||
| 171 | |||
| 154 | input, | 172 | input, |
| 155 | submit { | 173 | submit { |
| 156 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | 174 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| ... | @@ -161,7 +179,7 @@ submit { | ... | @@ -161,7 +179,7 @@ submit { |
| 161 | .form-table input[type=url], | 179 | .form-table input[type=url], |
| 162 | .form-table input[type=password], | 180 | .form-table input[type=password], |
| 163 | #pass-strength-result { | 181 | #pass-strength-result { |
| 164 | width: 218px; | 182 | width: 100%; |
| 165 | } | 183 | } |
| 166 | 184 | ||
| 167 | .form-table th p { | 185 | .form-table th p { |
| ... | @@ -286,6 +304,10 @@ body.rtl, | ... | @@ -286,6 +304,10 @@ body.rtl, |
| 286 | box-sizing: border-box; | 304 | box-sizing: border-box; |
| 287 | } | 305 | } |
| 288 | 306 | ||
| 307 | #pwd { | ||
| 308 | padding-right: 2.5rem; | ||
| 309 | } | ||
| 310 | |||
| 289 | .wp-pwd #pass1 { | 311 | .wp-pwd #pass1 { |
| 290 | padding-right: 50px; | 312 | padding-right: 50px; |
| 291 | } | 313 | } | ... | ... |
| 1 | /*! This file is auto-generated */ | 1 | /*! This file is auto-generated */ |
| 2 | 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 | ... | \ No newline at end of file |
| 2 | 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:115px;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 .setup-description{margin:4px 0 0;line-height:1.6}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}.wp-pwd{margin-top:0}.form-table .wp-pwd{display:flex;column-gap:4px}.form-table .password-input-wrapper{width:100%}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:100%}.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}#pwd{padding-right:2.5rem}.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 | ... | \ No newline at end of file | ... | ... |
| ... | @@ -462,50 +462,64 @@ table.media .column-title .filename { | ... | @@ -462,50 +462,64 @@ table.media .column-title .filename { |
| 462 | width: 160px; | 462 | width: 160px; |
| 463 | } | 463 | } |
| 464 | 464 | ||
| 465 | .sorting-indicators { | ||
| 466 | display: grid; | ||
| 467 | } | ||
| 468 | |||
| 465 | .sorting-indicator { | 469 | .sorting-indicator { |
| 466 | display: block; | 470 | display: block; |
| 467 | visibility: hidden; | ||
| 468 | width: 10px; | 471 | width: 10px; |
| 469 | height: 4px; | 472 | height: 4px; |
| 470 | margin-top: 8px; | 473 | margin-top: 4px; |
| 471 | margin-right: 7px; | 474 | margin-right: 7px; |
| 472 | } | 475 | } |
| 473 | 476 | ||
| 474 | .sorting-indicator:before { | 477 | .sorting-indicator:before { |
| 475 | content: "\f142"; | ||
| 476 | font: normal 20px/1 dashicons; | 478 | font: normal 20px/1 dashicons; |
| 477 | speak: never; | 479 | speak: never; |
| 478 | display: inline-block; | 480 | display: inline-block; |
| 479 | padding: 0; | 481 | padding: 0; |
| 480 | top: -4px; | 482 | top: -4px; |
| 481 | right: -8px; | 483 | right: -8px; |
| 482 | color: #3c434a; | ||
| 483 | line-height: 0.5; | 484 | line-height: 0.5; |
| 484 | position: relative; | 485 | position: relative; |
| 485 | vertical-align: top; | 486 | vertical-align: top; |
| 486 | -webkit-font-smoothing: antialiased; | 487 | -webkit-font-smoothing: antialiased; |
| 487 | -moz-osx-font-smoothing: grayscale; | 488 | -moz-osx-font-smoothing: grayscale; |
| 488 | text-decoration: none !important; | 489 | text-decoration: none !important; |
| 489 | color: #3c434a; | 490 | color: #a7aaad; |
| 490 | } | ||
| 491 | |||
| 492 | .column-comments .sorting-indicator:before { | ||
| 493 | top: 0; | ||
| 494 | right: -10px; | ||
| 495 | } | 491 | } |
| 496 | 492 | ||
| 497 | th.sorted.asc .sorting-indicator:before, | 493 | .sorting-indicator.asc:before { |
| 498 | th.desc:hover span.sorting-indicator:before, | ||
| 499 | th.desc a:focus span.sorting-indicator:before { | ||
| 500 | content: "\f142"; | 494 | content: "\f142"; |
| 501 | } | 495 | } |
| 502 | 496 | ||
| 503 | th.sorted.desc .sorting-indicator:before, | 497 | .sorting-indicator.desc:before { |
| 504 | th.asc:hover span.sorting-indicator:before, | ||
| 505 | th.asc a:focus span.sorting-indicator:before { | ||
| 506 | content: "\f140"; | 498 | content: "\f140"; |
| 507 | } | 499 | } |
| 508 | 500 | ||
| 501 | th.sorted.desc .sorting-indicator.desc:before { | ||
| 502 | color: #1d2327; | ||
| 503 | } | ||
| 504 | |||
| 505 | th.sorted.asc .sorting-indicator.asc:before { | ||
| 506 | color: #1d2327; | ||
| 507 | } | ||
| 508 | |||
| 509 | th.sorted.asc a:focus .sorting-indicator.asc:before, | ||
| 510 | th.sorted.asc:hover .sorting-indicator.asc:before, | ||
| 511 | th.sorted.desc a:focus .sorting-indicator.desc:before, | ||
| 512 | th.sorted.desc:hover .sorting-indicator.desc:before { | ||
| 513 | color: #a7aaad; | ||
| 514 | } | ||
| 515 | |||
| 516 | th.sorted.asc a:focus .sorting-indicator.desc:before, | ||
| 517 | th.sorted.asc:hover .sorting-indicator.desc:before, | ||
| 518 | th.sorted.desc a:focus .sorting-indicator.asc:before, | ||
| 519 | th.sorted.desc:hover .sorting-indicator.asc:before { | ||
| 520 | color: #1d2327; | ||
| 521 | } | ||
| 522 | |||
| 509 | .wp-list-table .toggle-row { | 523 | .wp-list-table .toggle-row { |
| 510 | position: absolute; | 524 | position: absolute; |
| 511 | left: 8px; | 525 | left: 8px; |
| ... | @@ -553,6 +567,35 @@ th.asc a:focus span.sorting-indicator:before { | ... | @@ -553,6 +567,35 @@ th.asc a:focus span.sorting-indicator:before { |
| 553 | content: "\f142"; | 567 | content: "\f142"; |
| 554 | } | 568 | } |
| 555 | 569 | ||
| 570 | .check-column { | ||
| 571 | position: relative; | ||
| 572 | } | ||
| 573 | |||
| 574 | .check-column label { | ||
| 575 | box-sizing: border-box; | ||
| 576 | width: 100%; | ||
| 577 | height: 100%; | ||
| 578 | display: block; | ||
| 579 | position: absolute; | ||
| 580 | top: 0; | ||
| 581 | right: 0; | ||
| 582 | } | ||
| 583 | |||
| 584 | .check-column input { | ||
| 585 | position: relative; | ||
| 586 | z-index: 1; | ||
| 587 | } | ||
| 588 | |||
| 589 | .check-column input:where(:not(:disabled)):hover, | ||
| 590 | .check-column:hover input:where(:not(:disabled)) { | ||
| 591 | box-shadow: 0 0 0 1px #2271b1; | ||
| 592 | } | ||
| 593 | |||
| 594 | .check-column label:hover, | ||
| 595 | .check-column input:hover + label { | ||
| 596 | background: rgba(0, 0, 0, 0.05); | ||
| 597 | } | ||
| 598 | |||
| 556 | .locked-indicator { | 599 | .locked-indicator { |
| 557 | display: none; | 600 | display: none; |
| 558 | margin-right: 6px; | 601 | margin-right: 6px; |
| ... | @@ -592,10 +635,6 @@ tr.wp-locked .row-actions .trash { | ... | @@ -592,10 +635,6 @@ tr.wp-locked .row-actions .trash { |
| 592 | display: none; | 635 | display: none; |
| 593 | } | 636 | } |
| 594 | 637 | ||
| 595 | .fixed .column-comments .sorting-indicator { | ||
| 596 | margin-top: 3px; | ||
| 597 | } | ||
| 598 | |||
| 599 | #menu-locations-wrap .widefat { | 638 | #menu-locations-wrap .widefat { |
| 600 | width: 60%; | 639 | width: 60%; |
| 601 | } | 640 | } |
| ... | @@ -623,14 +662,6 @@ th.sorted a span { | ... | @@ -623,14 +662,6 @@ th.sorted a span { |
| 623 | cursor: pointer; | 662 | cursor: pointer; |
| 624 | } | 663 | } |
| 625 | 664 | ||
| 626 | th.sorted .sorting-indicator, | ||
| 627 | th.desc:hover span.sorting-indicator, | ||
| 628 | th.desc a:focus span.sorting-indicator, | ||
| 629 | th.asc:hover span.sorting-indicator, | ||
| 630 | th.asc a:focus span.sorting-indicator { | ||
| 631 | visibility: visible; | ||
| 632 | } | ||
| 633 | |||
| 634 | .tablenav-pages .current-page { | 665 | .tablenav-pages .current-page { |
| 635 | margin: 0 0 0 2px; | 666 | margin: 0 0 0 2px; |
| 636 | font-size: 13px; | 667 | font-size: 13px; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -461,50 +461,64 @@ table.media .column-title .filename { | ... | @@ -461,50 +461,64 @@ table.media .column-title .filename { |
| 461 | width: 160px; | 461 | width: 160px; |
| 462 | } | 462 | } |
| 463 | 463 | ||
| 464 | .sorting-indicators { | ||
| 465 | display: grid; | ||
| 466 | } | ||
| 467 | |||
| 464 | .sorting-indicator { | 468 | .sorting-indicator { |
| 465 | display: block; | 469 | display: block; |
| 466 | visibility: hidden; | ||
| 467 | width: 10px; | 470 | width: 10px; |
| 468 | height: 4px; | 471 | height: 4px; |
| 469 | margin-top: 8px; | 472 | margin-top: 4px; |
| 470 | margin-left: 7px; | 473 | margin-left: 7px; |
| 471 | } | 474 | } |
| 472 | 475 | ||
| 473 | .sorting-indicator:before { | 476 | .sorting-indicator:before { |
| 474 | content: "\f142"; | ||
| 475 | font: normal 20px/1 dashicons; | 477 | font: normal 20px/1 dashicons; |
| 476 | speak: never; | 478 | speak: never; |
| 477 | display: inline-block; | 479 | display: inline-block; |
| 478 | padding: 0; | 480 | padding: 0; |
| 479 | top: -4px; | 481 | top: -4px; |
| 480 | left: -8px; | 482 | left: -8px; |
| 481 | color: #3c434a; | ||
| 482 | line-height: 0.5; | 483 | line-height: 0.5; |
| 483 | position: relative; | 484 | position: relative; |
| 484 | vertical-align: top; | 485 | vertical-align: top; |
| 485 | -webkit-font-smoothing: antialiased; | 486 | -webkit-font-smoothing: antialiased; |
| 486 | -moz-osx-font-smoothing: grayscale; | 487 | -moz-osx-font-smoothing: grayscale; |
| 487 | text-decoration: none !important; | 488 | text-decoration: none !important; |
| 488 | color: #3c434a; | 489 | color: #a7aaad; |
| 489 | } | ||
| 490 | |||
| 491 | .column-comments .sorting-indicator:before { | ||
| 492 | top: 0; | ||
| 493 | left: -10px; | ||
| 494 | } | 490 | } |
| 495 | 491 | ||
| 496 | th.sorted.asc .sorting-indicator:before, | 492 | .sorting-indicator.asc:before { |
| 497 | th.desc:hover span.sorting-indicator:before, | ||
| 498 | th.desc a:focus span.sorting-indicator:before { | ||
| 499 | content: "\f142"; | 493 | content: "\f142"; |
| 500 | } | 494 | } |
| 501 | 495 | ||
| 502 | th.sorted.desc .sorting-indicator:before, | 496 | .sorting-indicator.desc:before { |
| 503 | th.asc:hover span.sorting-indicator:before, | ||
| 504 | th.asc a:focus span.sorting-indicator:before { | ||
| 505 | content: "\f140"; | 497 | content: "\f140"; |
| 506 | } | 498 | } |
| 507 | 499 | ||
| 500 | th.sorted.desc .sorting-indicator.desc:before { | ||
| 501 | color: #1d2327; | ||
| 502 | } | ||
| 503 | |||
| 504 | th.sorted.asc .sorting-indicator.asc:before { | ||
| 505 | color: #1d2327; | ||
| 506 | } | ||
| 507 | |||
| 508 | th.sorted.asc a:focus .sorting-indicator.asc:before, | ||
| 509 | th.sorted.asc:hover .sorting-indicator.asc:before, | ||
| 510 | th.sorted.desc a:focus .sorting-indicator.desc:before, | ||
| 511 | th.sorted.desc:hover .sorting-indicator.desc:before { | ||
| 512 | color: #a7aaad; | ||
| 513 | } | ||
| 514 | |||
| 515 | th.sorted.asc a:focus .sorting-indicator.desc:before, | ||
| 516 | th.sorted.asc:hover .sorting-indicator.desc:before, | ||
| 517 | th.sorted.desc a:focus .sorting-indicator.asc:before, | ||
| 518 | th.sorted.desc:hover .sorting-indicator.asc:before { | ||
| 519 | color: #1d2327; | ||
| 520 | } | ||
| 521 | |||
| 508 | .wp-list-table .toggle-row { | 522 | .wp-list-table .toggle-row { |
| 509 | position: absolute; | 523 | position: absolute; |
| 510 | right: 8px; | 524 | right: 8px; |
| ... | @@ -552,6 +566,35 @@ th.asc a:focus span.sorting-indicator:before { | ... | @@ -552,6 +566,35 @@ th.asc a:focus span.sorting-indicator:before { |
| 552 | content: "\f142"; | 566 | content: "\f142"; |
| 553 | } | 567 | } |
| 554 | 568 | ||
| 569 | .check-column { | ||
| 570 | position: relative; | ||
| 571 | } | ||
| 572 | |||
| 573 | .check-column label { | ||
| 574 | box-sizing: border-box; | ||
| 575 | width: 100%; | ||
| 576 | height: 100%; | ||
| 577 | display: block; | ||
| 578 | position: absolute; | ||
| 579 | top: 0; | ||
| 580 | left: 0; | ||
| 581 | } | ||
| 582 | |||
| 583 | .check-column input { | ||
| 584 | position: relative; | ||
| 585 | z-index: 1; | ||
| 586 | } | ||
| 587 | |||
| 588 | .check-column input:where(:not(:disabled)):hover, | ||
| 589 | .check-column:hover input:where(:not(:disabled)) { | ||
| 590 | box-shadow: 0 0 0 1px #2271b1; | ||
| 591 | } | ||
| 592 | |||
| 593 | .check-column label:hover, | ||
| 594 | .check-column input:hover + label { | ||
| 595 | background: rgba(0, 0, 0, 0.05); | ||
| 596 | } | ||
| 597 | |||
| 555 | .locked-indicator { | 598 | .locked-indicator { |
| 556 | display: none; | 599 | display: none; |
| 557 | margin-left: 6px; | 600 | margin-left: 6px; |
| ... | @@ -591,10 +634,6 @@ tr.wp-locked .row-actions .trash { | ... | @@ -591,10 +634,6 @@ tr.wp-locked .row-actions .trash { |
| 591 | display: none; | 634 | display: none; |
| 592 | } | 635 | } |
| 593 | 636 | ||
| 594 | .fixed .column-comments .sorting-indicator { | ||
| 595 | margin-top: 3px; | ||
| 596 | } | ||
| 597 | |||
| 598 | #menu-locations-wrap .widefat { | 637 | #menu-locations-wrap .widefat { |
| 599 | width: 60%; | 638 | width: 60%; |
| 600 | } | 639 | } |
| ... | @@ -622,14 +661,6 @@ th.sorted a span { | ... | @@ -622,14 +661,6 @@ th.sorted a span { |
| 622 | cursor: pointer; | 661 | cursor: pointer; |
| 623 | } | 662 | } |
| 624 | 663 | ||
| 625 | th.sorted .sorting-indicator, | ||
| 626 | th.desc:hover span.sorting-indicator, | ||
| 627 | th.desc a:focus span.sorting-indicator, | ||
| 628 | th.asc:hover span.sorting-indicator, | ||
| 629 | th.asc a:focus span.sorting-indicator { | ||
| 630 | visibility: visible; | ||
| 631 | } | ||
| 632 | |||
| 633 | .tablenav-pages .current-page { | 664 | .tablenav-pages .current-page { |
| 634 | margin: 0 2px 0 0; | 665 | margin: 0 2px 0 0; |
| 635 | font-size: 13px; | 666 | font-size: 13px; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -43,8 +43,8 @@ p { | ... | @@ -43,8 +43,8 @@ p { |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | .login .message, | 45 | .login .message, |
| 46 | .login .success, | 46 | .login .notice, |
| 47 | .login #login_error { | 47 | .login .success { |
| 48 | border-right: 4px solid #72aee6; | 48 | border-right: 4px solid #72aee6; |
| 49 | padding: 12px; | 49 | padding: 12px; |
| 50 | margin-right: 0; | 50 | margin-right: 0; |
| ... | @@ -58,10 +58,19 @@ p { | ... | @@ -58,10 +58,19 @@ p { |
| 58 | border-right-color: #00a32a; | 58 | border-right-color: #00a32a; |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | .login #login_error { | 61 | /* Match border color from common.css */ |
| 62 | .login .notice-error { | ||
| 62 | border-right-color: #d63638; | 63 | border-right-color: #d63638; |
| 63 | } | 64 | } |
| 64 | 65 | ||
| 66 | .login .login-error-list { | ||
| 67 | list-style: none; | ||
| 68 | } | ||
| 69 | |||
| 70 | .login .login-error-list li + li { | ||
| 71 | margin-top: 4px; | ||
| 72 | } | ||
| 73 | |||
| 65 | #loginform p.submit, | 74 | #loginform p.submit, |
| 66 | .login-action-lostpassword p.submit { | 75 | .login-action-lostpassword p.submit { |
| 67 | border: none; | 76 | border: none; |
| ... | @@ -238,6 +247,11 @@ p { | ... | @@ -238,6 +247,11 @@ p { |
| 238 | margin-bottom: 0; | 247 | margin-bottom: 0; |
| 239 | } | 248 | } |
| 240 | 249 | ||
| 250 | #login form .indicator-hint, | ||
| 251 | #login #reg_passmail { | ||
| 252 | margin-bottom: 16px; | ||
| 253 | } | ||
| 254 | |||
| 241 | #login form p.submit { | 255 | #login form p.submit { |
| 242 | margin: 0; | 256 | margin: 0; |
| 243 | padding: 0; | 257 | padding: 0; |
| ... | @@ -343,9 +357,7 @@ p { | ... | @@ -343,9 +357,7 @@ p { |
| 343 | font-family: Consolas, Monaco, monospace; | 357 | font-family: Consolas, Monaco, monospace; |
| 344 | } | 358 | } |
| 345 | 359 | ||
| 346 | .js.login input.password-input, | 360 | .js.login input.password-input { |
| 347 | .js.login-action-rp form .input, | ||
| 348 | .js.login-action-rp input[type="text"] { | ||
| 349 | padding-left: 2.5rem; | 361 | padding-left: 2.5rem; |
| 350 | } | 362 | } |
| 351 | 363 | ||
| ... | @@ -355,6 +367,8 @@ p { | ... | @@ -355,6 +367,8 @@ p { |
| 355 | background: #fff; | 367 | background: #fff; |
| 356 | } | 368 | } |
| 357 | 369 | ||
| 370 | .js.login-action-resetpass input[type="text"], | ||
| 371 | .js.login-action-resetpass input[type="password"], | ||
| 358 | .js.login-action-rp input[type="text"], | 372 | .js.login-action-rp input[type="text"], |
| 359 | .js.login-action-rp input[type="password"] { | 373 | .js.login-action-rp input[type="password"] { |
| 360 | margin-bottom: 0; | 374 | margin-bottom: 0; |
| ... | @@ -438,8 +452,7 @@ input::-ms-reveal { | ... | @@ -438,8 +452,7 @@ input::-ms-reveal { |
| 438 | height: auto; | 452 | height: auto; |
| 439 | } | 453 | } |
| 440 | 454 | ||
| 441 | .login .language-switcher .button-primary { | 455 | .login .language-switcher .button { |
| 442 | float: none; | ||
| 443 | margin-bottom: 0; | 456 | margin-bottom: 0; |
| 444 | } | 457 | } |
| 445 | 458 | ||
| ... | @@ -473,7 +486,7 @@ input::-ms-reveal { | ... | @@ -473,7 +486,7 @@ input::-ms-reveal { |
| 473 | } | 486 | } |
| 474 | 487 | ||
| 475 | @media screen and (max-width: 400px) { | 488 | @media screen and (max-width: 400px) { |
| 476 | .login .language-switcher .button-primary { | 489 | .login .language-switcher .button { |
| 477 | display: block; | 490 | display: block; |
| 478 | margin: 5px auto 0; | 491 | margin: 5px auto 0; |
| 479 | } | 492 | } | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -42,8 +42,8 @@ p { | ... | @@ -42,8 +42,8 @@ p { |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | .login .message, | 44 | .login .message, |
| 45 | .login .success, | 45 | .login .notice, |
| 46 | .login #login_error { | 46 | .login .success { |
| 47 | border-left: 4px solid #72aee6; | 47 | border-left: 4px solid #72aee6; |
| 48 | padding: 12px; | 48 | padding: 12px; |
| 49 | margin-left: 0; | 49 | margin-left: 0; |
| ... | @@ -57,10 +57,19 @@ p { | ... | @@ -57,10 +57,19 @@ p { |
| 57 | border-left-color: #00a32a; | 57 | border-left-color: #00a32a; |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | .login #login_error { | 60 | /* Match border color from common.css */ |
| 61 | .login .notice-error { | ||
| 61 | border-left-color: #d63638; | 62 | border-left-color: #d63638; |
| 62 | } | 63 | } |
| 63 | 64 | ||
| 65 | .login .login-error-list { | ||
| 66 | list-style: none; | ||
| 67 | } | ||
| 68 | |||
| 69 | .login .login-error-list li + li { | ||
| 70 | margin-top: 4px; | ||
| 71 | } | ||
| 72 | |||
| 64 | #loginform p.submit, | 73 | #loginform p.submit, |
| 65 | .login-action-lostpassword p.submit { | 74 | .login-action-lostpassword p.submit { |
| 66 | border: none; | 75 | border: none; |
| ... | @@ -237,6 +246,11 @@ p { | ... | @@ -237,6 +246,11 @@ p { |
| 237 | margin-bottom: 0; | 246 | margin-bottom: 0; |
| 238 | } | 247 | } |
| 239 | 248 | ||
| 249 | #login form .indicator-hint, | ||
| 250 | #login #reg_passmail { | ||
| 251 | margin-bottom: 16px; | ||
| 252 | } | ||
| 253 | |||
| 240 | #login form p.submit { | 254 | #login form p.submit { |
| 241 | margin: 0; | 255 | margin: 0; |
| 242 | padding: 0; | 256 | padding: 0; |
| ... | @@ -342,9 +356,7 @@ p { | ... | @@ -342,9 +356,7 @@ p { |
| 342 | font-family: Consolas, Monaco, monospace; | 356 | font-family: Consolas, Monaco, monospace; |
| 343 | } | 357 | } |
| 344 | 358 | ||
| 345 | .js.login input.password-input, | 359 | .js.login input.password-input { |
| 346 | .js.login-action-rp form .input, | ||
| 347 | .js.login-action-rp input[type="text"] { | ||
| 348 | padding-right: 2.5rem; | 360 | padding-right: 2.5rem; |
| 349 | } | 361 | } |
| 350 | 362 | ||
| ... | @@ -354,6 +366,8 @@ p { | ... | @@ -354,6 +366,8 @@ p { |
| 354 | background: #fff; | 366 | background: #fff; |
| 355 | } | 367 | } |
| 356 | 368 | ||
| 369 | .js.login-action-resetpass input[type="text"], | ||
| 370 | .js.login-action-resetpass input[type="password"], | ||
| 357 | .js.login-action-rp input[type="text"], | 371 | .js.login-action-rp input[type="text"], |
| 358 | .js.login-action-rp input[type="password"] { | 372 | .js.login-action-rp input[type="password"] { |
| 359 | margin-bottom: 0; | 373 | margin-bottom: 0; |
| ... | @@ -437,8 +451,7 @@ input::-ms-reveal { | ... | @@ -437,8 +451,7 @@ input::-ms-reveal { |
| 437 | height: auto; | 451 | height: auto; |
| 438 | } | 452 | } |
| 439 | 453 | ||
| 440 | .login .language-switcher .button-primary { | 454 | .login .language-switcher .button { |
| 441 | float: none; | ||
| 442 | margin-bottom: 0; | 455 | margin-bottom: 0; |
| 443 | } | 456 | } |
| 444 | 457 | ||
| ... | @@ -472,7 +485,7 @@ input::-ms-reveal { | ... | @@ -472,7 +485,7 @@ input::-ms-reveal { |
| 472 | } | 485 | } |
| 473 | 486 | ||
| 474 | @media screen and (max-width: 400px) { | 487 | @media screen and (max-width: 400px) { |
| 475 | .login .language-switcher .button-primary { | 488 | .login .language-switcher .button { |
| 476 | display: block; | 489 | display: block; |
| 477 | margin: 5px auto 0; | 490 | margin: 5px auto 0; |
| 478 | } | 491 | } | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -131,6 +131,7 @@ | ... | @@ -131,6 +131,7 @@ |
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | .media-item .edit-attachment.copy-to-clipboard-container { | 133 | .media-item .edit-attachment.copy-to-clipboard-container { |
| 134 | display: flex; | ||
| 134 | margin-top: 0; | 135 | margin-top: 0; |
| 135 | } | 136 | } |
| 136 | 137 | ||
| ... | @@ -584,7 +585,7 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -584,7 +585,7 @@ border color while dragging a file over the uploader drop area */ |
| 584 | margin-top: 0; | 585 | margin-top: 0; |
| 585 | } | 586 | } |
| 586 | 587 | ||
| 587 | .media-search-input-label { | 588 | .media-frame-content .media-search-input-label { |
| 588 | margin: 0 0 0 .2em; | 589 | margin: 0 0 0 .2em; |
| 589 | vertical-align: baseline; | 590 | vertical-align: baseline; |
| 590 | } | 591 | } |
| ... | @@ -878,16 +879,16 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -878,16 +879,16 @@ border color while dragging a file over the uploader drop area */ |
| 878 | padding-top: 10px; | 879 | padding-top: 10px; |
| 879 | } | 880 | } |
| 880 | 881 | ||
| 881 | .imgedit-settings p, | 882 | .image-editor p, |
| 882 | .imgedit-settings fieldset { | 883 | .image-editor fieldset { |
| 883 | margin: 8px 0; | 884 | margin: 8px 0; |
| 884 | } | 885 | } |
| 885 | 886 | ||
| 886 | .imgedit-settings legend { | 887 | .image-editor legend { |
| 887 | margin-bottom: 5px; | 888 | margin-bottom: 5px; |
| 888 | } | 889 | } |
| 889 | 890 | ||
| 890 | .describe .imgedit-wrap .imgedit-settings { | 891 | .describe .imgedit-wrap .image-editor { |
| 891 | padding: 0 5px; | 892 | padding: 0 5px; |
| 892 | } | 893 | } |
| 893 | 894 | ||
| ... | @@ -899,19 +900,31 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -899,19 +900,31 @@ border color while dragging a file over the uploader drop area */ |
| 899 | height: auto; | 900 | height: auto; |
| 900 | } | 901 | } |
| 901 | 902 | ||
| 902 | .wp_attachment_holder .imgedit-wrap .imgedit-panel-content { | 903 | .imgedit-panel-content { |
| 903 | float: right; | 904 | display: flex; |
| 904 | padding: 3px 0 0 16px; | 905 | flex-wrap: wrap; |
| 905 | min-width: 400px; | 906 | gap: 20px; |
| 906 | max-width: calc( 100% - 266px ); | 907 | margin-bottom: 20px; |
| 908 | } | ||
| 909 | |||
| 910 | .imgedit-settings { | ||
| 911 | max-width: 400px; /* Prevent reflow when help info is expanded. */ | ||
| 912 | } | ||
| 913 | |||
| 914 | .imgedit-group-controls > * { | ||
| 915 | display: none; | ||
| 916 | } | ||
| 917 | |||
| 918 | .imgedit-panel-active .imgedit-group-controls > * { | ||
| 919 | display: block; | ||
| 907 | } | 920 | } |
| 908 | 921 | ||
| 909 | .wp_attachment_holder .imgedit-wrap .imgedit-settings { | 922 | .wp_attachment_holder .imgedit-wrap .image-editor { |
| 910 | float: left; | 923 | float: left; |
| 911 | width: 250px; | 924 | width: 250px; |
| 912 | } | 925 | } |
| 913 | 926 | ||
| 914 | .imgedit-settings input { | 927 | .image-editor input { |
| 915 | margin-top: 0; | 928 | margin-top: 0; |
| 916 | vertical-align: middle; | 929 | vertical-align: middle; |
| 917 | } | 930 | } |
| ... | @@ -946,7 +959,7 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -946,7 +959,7 @@ border color while dragging a file over the uploader drop area */ |
| 946 | } | 959 | } |
| 947 | 960 | ||
| 948 | .media-disabled, | 961 | .media-disabled, |
| 949 | .imgedit-settings .disabled { | 962 | .image-editor .disabled { |
| 950 | /* WCAG 1.4.3 Text or images of text that are part of an inactive user | 963 | /* WCAG 1.4.3 Text or images of text that are part of an inactive user |
| 951 | interface component ... have no contrast requirement. */ | 964 | interface component ... have no contrast requirement. */ |
| 952 | color: #a7aaad; | 965 | color: #a7aaad; |
| ... | @@ -970,10 +983,6 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -970,10 +983,6 @@ border color while dragging a file over the uploader drop area */ |
| 970 | float: right; | 983 | float: right; |
| 971 | } | 984 | } |
| 972 | 985 | ||
| 973 | .imgedit-menu { | ||
| 974 | margin: 0 0 12px; | ||
| 975 | } | ||
| 976 | |||
| 977 | .imgedit-menu .note-no-rotate { | 986 | .imgedit-menu .note-no-rotate { |
| 978 | clear: both; | 987 | clear: both; |
| 979 | margin: 0; | 988 | margin: 0; |
| ... | @@ -986,10 +995,10 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -986,10 +995,10 @@ border color while dragging a file over the uploader drop area */ |
| 986 | min-height: 28px; | 995 | min-height: 28px; |
| 987 | font-size: 13px; | 996 | font-size: 13px; |
| 988 | line-height: 2; | 997 | line-height: 2; |
| 989 | margin: 0 0 8px 8px; | ||
| 990 | padding: 0 10px; | 998 | padding: 0 10px; |
| 991 | } | 999 | } |
| 992 | 1000 | ||
| 1001 | .imgedit-menu .button:after, | ||
| 993 | .imgedit-menu .button:before { | 1002 | .imgedit-menu .button:before { |
| 994 | font: normal 16px/1 dashicons; | 1003 | font: normal 16px/1 dashicons; |
| 995 | margin-left: 8px; | 1004 | margin-left: 8px; |
| ... | @@ -1001,6 +1010,16 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1001,6 +1010,16 @@ border color while dragging a file over the uploader drop area */ |
| 1001 | -moz-osx-font-smoothing: grayscale; | 1010 | -moz-osx-font-smoothing: grayscale; |
| 1002 | } | 1011 | } |
| 1003 | 1012 | ||
| 1013 | .imgedit-menu .imgedit-rotate.button:after { | ||
| 1014 | content: '\f140'; | ||
| 1015 | margin-right: 2px; | ||
| 1016 | margin-left: 0; | ||
| 1017 | } | ||
| 1018 | |||
| 1019 | .imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after { | ||
| 1020 | content: '\f142'; | ||
| 1021 | } | ||
| 1022 | |||
| 1004 | .imgedit-menu .button.disabled { | 1023 | .imgedit-menu .button.disabled { |
| 1005 | color: #a7aaad; | 1024 | color: #a7aaad; |
| 1006 | border-color: #dcdcde; | 1025 | border-color: #dcdcde; |
| ... | @@ -1015,22 +1034,14 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1015,22 +1034,14 @@ border color while dragging a file over the uploader drop area */ |
| 1015 | content: "\f165"; | 1034 | content: "\f165"; |
| 1016 | } | 1035 | } |
| 1017 | 1036 | ||
| 1018 | .imgedit-rleft:before { | 1037 | .imgedit-scale:before { |
| 1019 | content: "\f166"; | 1038 | content: "\f211"; |
| 1020 | } | 1039 | } |
| 1021 | 1040 | ||
| 1022 | .imgedit-rright:before { | 1041 | .imgedit-rotate:before { |
| 1023 | content: "\f167"; | 1042 | content: "\f167"; |
| 1024 | } | 1043 | } |
| 1025 | 1044 | ||
| 1026 | .imgedit-flipv:before { | ||
| 1027 | content: "\f168"; | ||
| 1028 | } | ||
| 1029 | |||
| 1030 | .imgedit-fliph:before { | ||
| 1031 | content: "\f169"; | ||
| 1032 | } | ||
| 1033 | |||
| 1034 | .imgedit-undo:before { | 1045 | .imgedit-undo:before { |
| 1035 | content: "\f171"; | 1046 | content: "\f171"; |
| 1036 | } | 1047 | } |
| ... | @@ -1049,23 +1060,19 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1049,23 +1060,19 @@ border color while dragging a file over the uploader drop area */ |
| 1049 | background-size: 20px 20px; | 1060 | background-size: 20px 20px; |
| 1050 | } | 1061 | } |
| 1051 | 1062 | ||
| 1052 | .imgedit-crop { | 1063 | .imgedit-crop-wrap { |
| 1053 | margin: 0 0 0 8px; | 1064 | padding: 20px; |
| 1054 | } | 1065 | background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); |
| 1055 | 1066 | background-position: 100% 0, 10px 10px; | |
| 1056 | .imgedit-rleft { | 1067 | background-size: 20px 20px; |
| 1057 | margin: 0 3px; | ||
| 1058 | } | 1068 | } |
| 1059 | 1069 | ||
| 1060 | .imgedit-rright { | ||
| 1061 | margin: 0 3px 0 8px; | ||
| 1062 | } | ||
| 1063 | 1070 | ||
| 1064 | .imgedit-flipv { | 1071 | .imgedit-crop { |
| 1065 | margin: 0 3px; | 1072 | margin: 0 0 0 8px; |
| 1066 | } | 1073 | } |
| 1067 | 1074 | ||
| 1068 | .imgedit-fliph { | 1075 | .imgedit-rotate { |
| 1069 | margin: 0 3px 0 8px; | 1076 | margin: 0 3px 0 8px; |
| 1070 | } | 1077 | } |
| 1071 | 1078 | ||
| ... | @@ -1077,6 +1084,12 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1077,6 +1084,12 @@ border color while dragging a file over the uploader drop area */ |
| 1077 | margin: 0 3px 0 8px; | 1084 | margin: 0 3px 0 8px; |
| 1078 | } | 1085 | } |
| 1079 | 1086 | ||
| 1087 | .imgedit-thumbnail-preview-group { | ||
| 1088 | display: flex; | ||
| 1089 | flex-wrap: wrap; | ||
| 1090 | column-gap: 10px; | ||
| 1091 | } | ||
| 1092 | |||
| 1080 | .imgedit-thumbnail-preview { | 1093 | .imgedit-thumbnail-preview { |
| 1081 | margin: 10px 0 0 8px; | 1094 | margin: 10px 0 0 8px; |
| 1082 | } | 1095 | } |
| ... | @@ -1103,11 +1116,41 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1103,11 +1116,41 @@ border color while dragging a file over the uploader drop area */ |
| 1103 | padding: .5em 0 0; | 1116 | padding: .5em 0 0; |
| 1104 | } | 1117 | } |
| 1105 | 1118 | ||
| 1119 | .imgedit-popup-menu, | ||
| 1106 | .imgedit-help { | 1120 | .imgedit-help { |
| 1107 | display: none; | 1121 | display: none; |
| 1108 | padding-bottom: 8px; | 1122 | padding-bottom: 8px; |
| 1109 | } | 1123 | } |
| 1110 | 1124 | ||
| 1125 | .imgedit-panel-tools > .imgedit-menu { | ||
| 1126 | display: flex; | ||
| 1127 | column-gap: 4px; | ||
| 1128 | align-items: start; | ||
| 1129 | flex-wrap: wrap; | ||
| 1130 | } | ||
| 1131 | |||
| 1132 | .imgedit-popup-menu { | ||
| 1133 | width: calc( 100% - 20px ); | ||
| 1134 | position: absolute; | ||
| 1135 | background: #fff; | ||
| 1136 | padding: 10px; | ||
| 1137 | box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); | ||
| 1138 | } | ||
| 1139 | |||
| 1140 | .image-editor .imgedit-menu .imgedit-popup-menu button { | ||
| 1141 | display: block; | ||
| 1142 | margin: 2px 0; | ||
| 1143 | width: 100%; | ||
| 1144 | white-space: break-spaces; | ||
| 1145 | line-height: 1.5; | ||
| 1146 | padding-top: 3px; | ||
| 1147 | padding-bottom: 2px; | ||
| 1148 | } | ||
| 1149 | |||
| 1150 | .imgedit-rotate-menu-container { | ||
| 1151 | position: relative; | ||
| 1152 | } | ||
| 1153 | |||
| 1111 | .imgedit-help.imgedit-restore { | 1154 | .imgedit-help.imgedit-restore { |
| 1112 | padding-bottom: 0; | 1155 | padding-bottom: 0; |
| 1113 | } | 1156 | } |
| ... | @@ -1140,10 +1183,6 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1140,10 +1183,6 @@ border color while dragging a file over the uploader drop area */ |
| 1140 | padding: 0; | 1183 | padding: 0; |
| 1141 | } | 1184 | } |
| 1142 | 1185 | ||
| 1143 | .imgedit-submit { | ||
| 1144 | margin: 8px 0 0; | ||
| 1145 | } | ||
| 1146 | |||
| 1147 | .imgedit-submit-btn { | 1186 | .imgedit-submit-btn { |
| 1148 | margin-right: 20px; | 1187 | margin-right: 20px; |
| 1149 | } | 1188 | } |
| ... | @@ -1155,8 +1194,11 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1155,8 +1194,11 @@ border color while dragging a file over the uploader drop area */ |
| 1155 | } | 1194 | } |
| 1156 | 1195 | ||
| 1157 | span.imgedit-scale-warn { | 1196 | span.imgedit-scale-warn { |
| 1158 | color: #d63638; | 1197 | display: flex; |
| 1159 | font-size: 20px; | 1198 | align-items: center; |
| 1199 | margin: 4px; | ||
| 1200 | gap: 4px; | ||
| 1201 | color: #b32d2e; | ||
| 1160 | font-style: normal; | 1202 | font-style: normal; |
| 1161 | visibility: hidden; | 1203 | visibility: hidden; |
| 1162 | vertical-align: middle; | 1204 | vertical-align: middle; |
| ... | @@ -1171,17 +1213,19 @@ span.imgedit-scale-warn { | ... | @@ -1171,17 +1213,19 @@ span.imgedit-scale-warn { |
| 1171 | } | 1213 | } |
| 1172 | 1214 | ||
| 1173 | .imgedit-group { | 1215 | .imgedit-group { |
| 1174 | margin-bottom: 8px; | 1216 | margin-bottom: 20px; |
| 1175 | padding: 10px; | ||
| 1176 | } | 1217 | } |
| 1177 | 1218 | ||
| 1178 | .imgedit-settings .imgedit-original-dimensions { | 1219 | .image-editor .imgedit-original-dimensions { |
| 1179 | display: inline-block; | 1220 | display: inline-block; |
| 1180 | } | 1221 | } |
| 1181 | 1222 | ||
| 1182 | .imgedit-settings .imgedit-scale input[type="text"], | 1223 | .image-editor .imgedit-scale-controls input[type="text"], |
| 1183 | .imgedit-settings .imgedit-crop-ratio input[type="text"], | 1224 | .image-editor .imgedit-crop-ratio input[type="text"], |
| 1184 | .imgedit-settings .imgedit-crop-sel input[type="text"] { | 1225 | .image-editor .imgedit-crop-sel input[type="text"], |
| 1226 | .image-editor .imgedit-scale-controls input[type="number"], | ||
| 1227 | .image-editor .imgedit-crop-ratio input[type="number"], | ||
| 1228 | .image-editor .imgedit-crop-sel input[type="number"] { | ||
| 1185 | width: 80px; | 1229 | width: 80px; |
| 1186 | font-size: 14px; | 1230 | font-size: 14px; |
| 1187 | padding: 0 8px; | 1231 | padding: 0 8px; |
| ... | @@ -1195,12 +1239,12 @@ span.imgedit-scale-warn { | ... | @@ -1195,12 +1239,12 @@ span.imgedit-scale-warn { |
| 1195 | color: #3c434a; | 1239 | color: #3c434a; |
| 1196 | } | 1240 | } |
| 1197 | 1241 | ||
| 1198 | .imgedit-settings .imgedit-scale-button-wrapper { | 1242 | .image-editor .imgedit-scale-button-wrapper { |
| 1199 | margin-top: 0.3077em; | 1243 | margin-top: 0.3077em; |
| 1200 | display: block; | 1244 | display: block; |
| 1201 | } | 1245 | } |
| 1202 | 1246 | ||
| 1203 | .imgedit-settings .imgedit-scale .button { | 1247 | .image-editor .imgedit-scale-controls .button { |
| 1204 | margin-bottom: 0; | 1248 | margin-bottom: 0; |
| 1205 | } | 1249 | } |
| 1206 | 1250 | ||
| ... | @@ -1269,15 +1313,15 @@ audio, video { | ... | @@ -1269,15 +1313,15 @@ audio, video { |
| 1269 | padding: 10px 12px 10px 0; | 1313 | padding: 10px 12px 10px 0; |
| 1270 | } | 1314 | } |
| 1271 | 1315 | ||
| 1272 | .imgedit-settings .imgedit-scale input[type="text"], | 1316 | .image-editor .imgedit-scale input[type="text"], |
| 1273 | .imgedit-settings .imgedit-crop-ratio input[type="text"], | 1317 | .image-editor .imgedit-crop-ratio input[type="text"], |
| 1274 | .imgedit-settings .imgedit-crop-sel input[type="text"] { | 1318 | .image-editor .imgedit-crop-sel input[type="text"] { |
| 1275 | font-size: 16px; | 1319 | font-size: 16px; |
| 1276 | padding: 6px 10px; | 1320 | padding: 6px 10px; |
| 1277 | } | 1321 | } |
| 1278 | 1322 | ||
| 1279 | .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, | 1323 | .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, |
| 1280 | .wp_attachment_holder .imgedit-wrap .imgedit-settings { | 1324 | .wp_attachment_holder .imgedit-wrap .image-editor { |
| 1281 | float: none; | 1325 | float: none; |
| 1282 | width: auto; | 1326 | width: auto; |
| 1283 | max-width: none; | 1327 | max-width: none; |
| ... | @@ -1294,16 +1338,16 @@ audio, video { | ... | @@ -1294,16 +1338,16 @@ audio, video { |
| 1294 | } | 1338 | } |
| 1295 | 1339 | ||
| 1296 | .media-modal .imgedit-wrap .imgedit-panel-content, | 1340 | .media-modal .imgedit-wrap .imgedit-panel-content, |
| 1297 | .media-modal .imgedit-wrap .imgedit-settings { | 1341 | .media-modal .imgedit-wrap .image-editor { |
| 1298 | position: initial !important; | 1342 | position: initial !important; |
| 1299 | } | 1343 | } |
| 1300 | 1344 | ||
| 1301 | .media-modal .imgedit-wrap .imgedit-settings { | 1345 | .media-modal .imgedit-wrap .image-editor { |
| 1302 | box-sizing: border-box; | 1346 | box-sizing: border-box; |
| 1303 | width: 100% !important; | 1347 | width: 100% !important; |
| 1304 | } | 1348 | } |
| 1305 | 1349 | ||
| 1306 | .imgedit-settings .imgedit-scale-button-wrapper { | 1350 | .image-editor .imgedit-scale-button-wrapper { |
| 1307 | display: inline-block; | 1351 | display: inline-block; |
| 1308 | } | 1352 | } |
| 1309 | } | 1353 | } |
| ... | @@ -1317,7 +1361,6 @@ audio, video { | ... | @@ -1317,7 +1361,6 @@ audio, video { |
| 1317 | /** | 1361 | /** |
| 1318 | * Media queries for media grid. | 1362 | * Media queries for media grid. |
| 1319 | */ | 1363 | */ |
| 1320 | |||
| 1321 | @media only screen and (max-width: 1120px) { | 1364 | @media only screen and (max-width: 1120px) { |
| 1322 | /* override for media-views.css */ | 1365 | /* override for media-views.css */ |
| 1323 | #wp-media-grid .wp-filter .attachment-filters { | 1366 | #wp-media-grid .wp-filter .attachment-filters { |
| ... | @@ -1325,6 +1368,17 @@ audio, video { | ... | @@ -1325,6 +1368,17 @@ audio, video { |
| 1325 | } | 1368 | } |
| 1326 | } | 1369 | } |
| 1327 | 1370 | ||
| 1371 | @media only screen and (max-width: 1000px) { | ||
| 1372 | /* override for forms.css */ | ||
| 1373 | .wp-filter p.search-box { | ||
| 1374 | float: none; | ||
| 1375 | width: 100%; | ||
| 1376 | margin-bottom: 20px; | ||
| 1377 | display: flex; | ||
| 1378 | } | ||
| 1379 | |||
| 1380 | } | ||
| 1381 | |||
| 1328 | @media only screen and (max-width: 782px) { | 1382 | @media only screen and (max-width: 782px) { |
| 1329 | .media-frame.mode-select .attachments-browser.fixed .media-toolbar { | 1383 | .media-frame.mode-select .attachments-browser.fixed .media-toolbar { |
| 1330 | top: 46px; | 1384 | top: 46px; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -130,6 +130,7 @@ | ... | @@ -130,6 +130,7 @@ |
| 130 | } | 130 | } |
| 131 | 131 | ||
| 132 | .media-item .edit-attachment.copy-to-clipboard-container { | 132 | .media-item .edit-attachment.copy-to-clipboard-container { |
| 133 | display: flex; | ||
| 133 | margin-top: 0; | 134 | margin-top: 0; |
| 134 | } | 135 | } |
| 135 | 136 | ||
| ... | @@ -583,7 +584,7 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -583,7 +584,7 @@ border color while dragging a file over the uploader drop area */ |
| 583 | margin-top: 0; | 584 | margin-top: 0; |
| 584 | } | 585 | } |
| 585 | 586 | ||
| 586 | .media-search-input-label { | 587 | .media-frame-content .media-search-input-label { |
| 587 | margin: 0 .2em 0 0; | 588 | margin: 0 .2em 0 0; |
| 588 | vertical-align: baseline; | 589 | vertical-align: baseline; |
| 589 | } | 590 | } |
| ... | @@ -877,16 +878,16 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -877,16 +878,16 @@ border color while dragging a file over the uploader drop area */ |
| 877 | padding-top: 10px; | 878 | padding-top: 10px; |
| 878 | } | 879 | } |
| 879 | 880 | ||
| 880 | .imgedit-settings p, | 881 | .image-editor p, |
| 881 | .imgedit-settings fieldset { | 882 | .image-editor fieldset { |
| 882 | margin: 8px 0; | 883 | margin: 8px 0; |
| 883 | } | 884 | } |
| 884 | 885 | ||
| 885 | .imgedit-settings legend { | 886 | .image-editor legend { |
| 886 | margin-bottom: 5px; | 887 | margin-bottom: 5px; |
| 887 | } | 888 | } |
| 888 | 889 | ||
| 889 | .describe .imgedit-wrap .imgedit-settings { | 890 | .describe .imgedit-wrap .image-editor { |
| 890 | padding: 0 5px; | 891 | padding: 0 5px; |
| 891 | } | 892 | } |
| 892 | 893 | ||
| ... | @@ -898,19 +899,31 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -898,19 +899,31 @@ border color while dragging a file over the uploader drop area */ |
| 898 | height: auto; | 899 | height: auto; |
| 899 | } | 900 | } |
| 900 | 901 | ||
| 901 | .wp_attachment_holder .imgedit-wrap .imgedit-panel-content { | 902 | .imgedit-panel-content { |
| 902 | float: left; | 903 | display: flex; |
| 903 | padding: 3px 16px 0 0; | 904 | flex-wrap: wrap; |
| 904 | min-width: 400px; | 905 | gap: 20px; |
| 905 | max-width: calc( 100% - 266px ); | 906 | margin-bottom: 20px; |
| 907 | } | ||
| 908 | |||
| 909 | .imgedit-settings { | ||
| 910 | max-width: 400px; /* Prevent reflow when help info is expanded. */ | ||
| 911 | } | ||
| 912 | |||
| 913 | .imgedit-group-controls > * { | ||
| 914 | display: none; | ||
| 915 | } | ||
| 916 | |||
| 917 | .imgedit-panel-active .imgedit-group-controls > * { | ||
| 918 | display: block; | ||
| 906 | } | 919 | } |
| 907 | 920 | ||
| 908 | .wp_attachment_holder .imgedit-wrap .imgedit-settings { | 921 | .wp_attachment_holder .imgedit-wrap .image-editor { |
| 909 | float: right; | 922 | float: right; |
| 910 | width: 250px; | 923 | width: 250px; |
| 911 | } | 924 | } |
| 912 | 925 | ||
| 913 | .imgedit-settings input { | 926 | .image-editor input { |
| 914 | margin-top: 0; | 927 | margin-top: 0; |
| 915 | vertical-align: middle; | 928 | vertical-align: middle; |
| 916 | } | 929 | } |
| ... | @@ -945,7 +958,7 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -945,7 +958,7 @@ border color while dragging a file over the uploader drop area */ |
| 945 | } | 958 | } |
| 946 | 959 | ||
| 947 | .media-disabled, | 960 | .media-disabled, |
| 948 | .imgedit-settings .disabled { | 961 | .image-editor .disabled { |
| 949 | /* WCAG 1.4.3 Text or images of text that are part of an inactive user | 962 | /* WCAG 1.4.3 Text or images of text that are part of an inactive user |
| 950 | interface component ... have no contrast requirement. */ | 963 | interface component ... have no contrast requirement. */ |
| 951 | color: #a7aaad; | 964 | color: #a7aaad; |
| ... | @@ -969,10 +982,6 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -969,10 +982,6 @@ border color while dragging a file over the uploader drop area */ |
| 969 | float: left; | 982 | float: left; |
| 970 | } | 983 | } |
| 971 | 984 | ||
| 972 | .imgedit-menu { | ||
| 973 | margin: 0 0 12px; | ||
| 974 | } | ||
| 975 | |||
| 976 | .imgedit-menu .note-no-rotate { | 985 | .imgedit-menu .note-no-rotate { |
| 977 | clear: both; | 986 | clear: both; |
| 978 | margin: 0; | 987 | margin: 0; |
| ... | @@ -985,10 +994,10 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -985,10 +994,10 @@ border color while dragging a file over the uploader drop area */ |
| 985 | min-height: 28px; | 994 | min-height: 28px; |
| 986 | font-size: 13px; | 995 | font-size: 13px; |
| 987 | line-height: 2; | 996 | line-height: 2; |
| 988 | margin: 0 8px 8px 0; | ||
| 989 | padding: 0 10px; | 997 | padding: 0 10px; |
| 990 | } | 998 | } |
| 991 | 999 | ||
| 1000 | .imgedit-menu .button:after, | ||
| 992 | .imgedit-menu .button:before { | 1001 | .imgedit-menu .button:before { |
| 993 | font: normal 16px/1 dashicons; | 1002 | font: normal 16px/1 dashicons; |
| 994 | margin-right: 8px; | 1003 | margin-right: 8px; |
| ... | @@ -1000,6 +1009,16 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1000,6 +1009,16 @@ border color while dragging a file over the uploader drop area */ |
| 1000 | -moz-osx-font-smoothing: grayscale; | 1009 | -moz-osx-font-smoothing: grayscale; |
| 1001 | } | 1010 | } |
| 1002 | 1011 | ||
| 1012 | .imgedit-menu .imgedit-rotate.button:after { | ||
| 1013 | content: '\f140'; | ||
| 1014 | margin-left: 2px; | ||
| 1015 | margin-right: 0; | ||
| 1016 | } | ||
| 1017 | |||
| 1018 | .imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after { | ||
| 1019 | content: '\f142'; | ||
| 1020 | } | ||
| 1021 | |||
| 1003 | .imgedit-menu .button.disabled { | 1022 | .imgedit-menu .button.disabled { |
| 1004 | color: #a7aaad; | 1023 | color: #a7aaad; |
| 1005 | border-color: #dcdcde; | 1024 | border-color: #dcdcde; |
| ... | @@ -1014,22 +1033,14 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1014,22 +1033,14 @@ border color while dragging a file over the uploader drop area */ |
| 1014 | content: "\f165"; | 1033 | content: "\f165"; |
| 1015 | } | 1034 | } |
| 1016 | 1035 | ||
| 1017 | .imgedit-rleft:before { | 1036 | .imgedit-scale:before { |
| 1018 | content: "\f166"; | 1037 | content: "\f211"; |
| 1019 | } | 1038 | } |
| 1020 | 1039 | ||
| 1021 | .imgedit-rright:before { | 1040 | .imgedit-rotate:before { |
| 1022 | content: "\f167"; | 1041 | content: "\f167"; |
| 1023 | } | 1042 | } |
| 1024 | 1043 | ||
| 1025 | .imgedit-flipv:before { | ||
| 1026 | content: "\f168"; | ||
| 1027 | } | ||
| 1028 | |||
| 1029 | .imgedit-fliph:before { | ||
| 1030 | content: "\f169"; | ||
| 1031 | } | ||
| 1032 | |||
| 1033 | .imgedit-undo:before { | 1044 | .imgedit-undo:before { |
| 1034 | content: "\f171"; | 1045 | content: "\f171"; |
| 1035 | } | 1046 | } |
| ... | @@ -1048,23 +1059,19 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1048,23 +1059,19 @@ border color while dragging a file over the uploader drop area */ |
| 1048 | background-size: 20px 20px; | 1059 | background-size: 20px 20px; |
| 1049 | } | 1060 | } |
| 1050 | 1061 | ||
| 1051 | .imgedit-crop { | 1062 | .imgedit-crop-wrap { |
| 1052 | margin: 0 8px 0 0; | 1063 | padding: 20px; |
| 1053 | } | 1064 | background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); |
| 1054 | 1065 | background-position: 0 0, 10px 10px; | |
| 1055 | .imgedit-rleft { | 1066 | background-size: 20px 20px; |
| 1056 | margin: 0 3px; | ||
| 1057 | } | 1067 | } |
| 1058 | 1068 | ||
| 1059 | .imgedit-rright { | ||
| 1060 | margin: 0 8px 0 3px; | ||
| 1061 | } | ||
| 1062 | 1069 | ||
| 1063 | .imgedit-flipv { | 1070 | .imgedit-crop { |
| 1064 | margin: 0 3px; | 1071 | margin: 0 8px 0 0; |
| 1065 | } | 1072 | } |
| 1066 | 1073 | ||
| 1067 | .imgedit-fliph { | 1074 | .imgedit-rotate { |
| 1068 | margin: 0 8px 0 3px; | 1075 | margin: 0 8px 0 3px; |
| 1069 | } | 1076 | } |
| 1070 | 1077 | ||
| ... | @@ -1076,6 +1083,12 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1076,6 +1083,12 @@ border color while dragging a file over the uploader drop area */ |
| 1076 | margin: 0 8px 0 3px; | 1083 | margin: 0 8px 0 3px; |
| 1077 | } | 1084 | } |
| 1078 | 1085 | ||
| 1086 | .imgedit-thumbnail-preview-group { | ||
| 1087 | display: flex; | ||
| 1088 | flex-wrap: wrap; | ||
| 1089 | column-gap: 10px; | ||
| 1090 | } | ||
| 1091 | |||
| 1079 | .imgedit-thumbnail-preview { | 1092 | .imgedit-thumbnail-preview { |
| 1080 | margin: 10px 8px 0 0; | 1093 | margin: 10px 8px 0 0; |
| 1081 | } | 1094 | } |
| ... | @@ -1102,11 +1115,41 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1102,11 +1115,41 @@ border color while dragging a file over the uploader drop area */ |
| 1102 | padding: .5em 0 0; | 1115 | padding: .5em 0 0; |
| 1103 | } | 1116 | } |
| 1104 | 1117 | ||
| 1118 | .imgedit-popup-menu, | ||
| 1105 | .imgedit-help { | 1119 | .imgedit-help { |
| 1106 | display: none; | 1120 | display: none; |
| 1107 | padding-bottom: 8px; | 1121 | padding-bottom: 8px; |
| 1108 | } | 1122 | } |
| 1109 | 1123 | ||
| 1124 | .imgedit-panel-tools > .imgedit-menu { | ||
| 1125 | display: flex; | ||
| 1126 | column-gap: 4px; | ||
| 1127 | align-items: start; | ||
| 1128 | flex-wrap: wrap; | ||
| 1129 | } | ||
| 1130 | |||
| 1131 | .imgedit-popup-menu { | ||
| 1132 | width: calc( 100% - 20px ); | ||
| 1133 | position: absolute; | ||
| 1134 | background: #fff; | ||
| 1135 | padding: 10px; | ||
| 1136 | box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); | ||
| 1137 | } | ||
| 1138 | |||
| 1139 | .image-editor .imgedit-menu .imgedit-popup-menu button { | ||
| 1140 | display: block; | ||
| 1141 | margin: 2px 0; | ||
| 1142 | width: 100%; | ||
| 1143 | white-space: break-spaces; | ||
| 1144 | line-height: 1.5; | ||
| 1145 | padding-top: 3px; | ||
| 1146 | padding-bottom: 2px; | ||
| 1147 | } | ||
| 1148 | |||
| 1149 | .imgedit-rotate-menu-container { | ||
| 1150 | position: relative; | ||
| 1151 | } | ||
| 1152 | |||
| 1110 | .imgedit-help.imgedit-restore { | 1153 | .imgedit-help.imgedit-restore { |
| 1111 | padding-bottom: 0; | 1154 | padding-bottom: 0; |
| 1112 | } | 1155 | } |
| ... | @@ -1139,10 +1182,6 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1139,10 +1182,6 @@ border color while dragging a file over the uploader drop area */ |
| 1139 | padding: 0; | 1182 | padding: 0; |
| 1140 | } | 1183 | } |
| 1141 | 1184 | ||
| 1142 | .imgedit-submit { | ||
| 1143 | margin: 8px 0 0; | ||
| 1144 | } | ||
| 1145 | |||
| 1146 | .imgedit-submit-btn { | 1185 | .imgedit-submit-btn { |
| 1147 | margin-left: 20px; | 1186 | margin-left: 20px; |
| 1148 | } | 1187 | } |
| ... | @@ -1154,8 +1193,11 @@ border color while dragging a file over the uploader drop area */ | ... | @@ -1154,8 +1193,11 @@ border color while dragging a file over the uploader drop area */ |
| 1154 | } | 1193 | } |
| 1155 | 1194 | ||
| 1156 | span.imgedit-scale-warn { | 1195 | span.imgedit-scale-warn { |
| 1157 | color: #d63638; | 1196 | display: flex; |
| 1158 | font-size: 20px; | 1197 | align-items: center; |
| 1198 | margin: 4px; | ||
| 1199 | gap: 4px; | ||
| 1200 | color: #b32d2e; | ||
| 1159 | font-style: normal; | 1201 | font-style: normal; |
| 1160 | visibility: hidden; | 1202 | visibility: hidden; |
| 1161 | vertical-align: middle; | 1203 | vertical-align: middle; |
| ... | @@ -1170,17 +1212,19 @@ span.imgedit-scale-warn { | ... | @@ -1170,17 +1212,19 @@ span.imgedit-scale-warn { |
| 1170 | } | 1212 | } |
| 1171 | 1213 | ||
| 1172 | .imgedit-group { | 1214 | .imgedit-group { |
| 1173 | margin-bottom: 8px; | 1215 | margin-bottom: 20px; |
| 1174 | padding: 10px; | ||
| 1175 | } | 1216 | } |
| 1176 | 1217 | ||
| 1177 | .imgedit-settings .imgedit-original-dimensions { | 1218 | .image-editor .imgedit-original-dimensions { |
| 1178 | display: inline-block; | 1219 | display: inline-block; |
| 1179 | } | 1220 | } |
| 1180 | 1221 | ||
| 1181 | .imgedit-settings .imgedit-scale input[type="text"], | 1222 | .image-editor .imgedit-scale-controls input[type="text"], |
| 1182 | .imgedit-settings .imgedit-crop-ratio input[type="text"], | 1223 | .image-editor .imgedit-crop-ratio input[type="text"], |
| 1183 | .imgedit-settings .imgedit-crop-sel input[type="text"] { | 1224 | .image-editor .imgedit-crop-sel input[type="text"], |
| 1225 | .image-editor .imgedit-scale-controls input[type="number"], | ||
| 1226 | .image-editor .imgedit-crop-ratio input[type="number"], | ||
| 1227 | .image-editor .imgedit-crop-sel input[type="number"] { | ||
| 1184 | width: 80px; | 1228 | width: 80px; |
| 1185 | font-size: 14px; | 1229 | font-size: 14px; |
| 1186 | padding: 0 8px; | 1230 | padding: 0 8px; |
| ... | @@ -1194,12 +1238,12 @@ span.imgedit-scale-warn { | ... | @@ -1194,12 +1238,12 @@ span.imgedit-scale-warn { |
| 1194 | color: #3c434a; | 1238 | color: #3c434a; |
| 1195 | } | 1239 | } |
| 1196 | 1240 | ||
| 1197 | .imgedit-settings .imgedit-scale-button-wrapper { | 1241 | .image-editor .imgedit-scale-button-wrapper { |
| 1198 | margin-top: 0.3077em; | 1242 | margin-top: 0.3077em; |
| 1199 | display: block; | 1243 | display: block; |
| 1200 | } | 1244 | } |
| 1201 | 1245 | ||
| 1202 | .imgedit-settings .imgedit-scale .button { | 1246 | .image-editor .imgedit-scale-controls .button { |
| 1203 | margin-bottom: 0; | 1247 | margin-bottom: 0; |
| 1204 | } | 1248 | } |
| 1205 | 1249 | ||
| ... | @@ -1268,15 +1312,15 @@ audio, video { | ... | @@ -1268,15 +1312,15 @@ audio, video { |
| 1268 | padding: 10px 0 10px 12px; | 1312 | padding: 10px 0 10px 12px; |
| 1269 | } | 1313 | } |
| 1270 | 1314 | ||
| 1271 | .imgedit-settings .imgedit-scale input[type="text"], | 1315 | .image-editor .imgedit-scale input[type="text"], |
| 1272 | .imgedit-settings .imgedit-crop-ratio input[type="text"], | 1316 | .image-editor .imgedit-crop-ratio input[type="text"], |
| 1273 | .imgedit-settings .imgedit-crop-sel input[type="text"] { | 1317 | .image-editor .imgedit-crop-sel input[type="text"] { |
| 1274 | font-size: 16px; | 1318 | font-size: 16px; |
| 1275 | padding: 6px 10px; | 1319 | padding: 6px 10px; |
| 1276 | } | 1320 | } |
| 1277 | 1321 | ||
| 1278 | .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, | 1322 | .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, |
| 1279 | .wp_attachment_holder .imgedit-wrap .imgedit-settings { | 1323 | .wp_attachment_holder .imgedit-wrap .image-editor { |
| 1280 | float: none; | 1324 | float: none; |
| 1281 | width: auto; | 1325 | width: auto; |
| 1282 | max-width: none; | 1326 | max-width: none; |
| ... | @@ -1293,16 +1337,16 @@ audio, video { | ... | @@ -1293,16 +1337,16 @@ audio, video { |
| 1293 | } | 1337 | } |
| 1294 | 1338 | ||
| 1295 | .media-modal .imgedit-wrap .imgedit-panel-content, | 1339 | .media-modal .imgedit-wrap .imgedit-panel-content, |
| 1296 | .media-modal .imgedit-wrap .imgedit-settings { | 1340 | .media-modal .imgedit-wrap .image-editor { |
| 1297 | position: initial !important; | 1341 | position: initial !important; |
| 1298 | } | 1342 | } |
| 1299 | 1343 | ||
| 1300 | .media-modal .imgedit-wrap .imgedit-settings { | 1344 | .media-modal .imgedit-wrap .image-editor { |
| 1301 | box-sizing: border-box; | 1345 | box-sizing: border-box; |
| 1302 | width: 100% !important; | 1346 | width: 100% !important; |
| 1303 | } | 1347 | } |
| 1304 | 1348 | ||
| 1305 | .imgedit-settings .imgedit-scale-button-wrapper { | 1349 | .image-editor .imgedit-scale-button-wrapper { |
| 1306 | display: inline-block; | 1350 | display: inline-block; |
| 1307 | } | 1351 | } |
| 1308 | } | 1352 | } |
| ... | @@ -1316,7 +1360,6 @@ audio, video { | ... | @@ -1316,7 +1360,6 @@ audio, video { |
| 1316 | /** | 1360 | /** |
| 1317 | * Media queries for media grid. | 1361 | * Media queries for media grid. |
| 1318 | */ | 1362 | */ |
| 1319 | |||
| 1320 | @media only screen and (max-width: 1120px) { | 1363 | @media only screen and (max-width: 1120px) { |
| 1321 | /* override for media-views.css */ | 1364 | /* override for media-views.css */ |
| 1322 | #wp-media-grid .wp-filter .attachment-filters { | 1365 | #wp-media-grid .wp-filter .attachment-filters { |
| ... | @@ -1324,6 +1367,17 @@ audio, video { | ... | @@ -1324,6 +1367,17 @@ audio, video { |
| 1324 | } | 1367 | } |
| 1325 | } | 1368 | } |
| 1326 | 1369 | ||
| 1370 | @media only screen and (max-width: 1000px) { | ||
| 1371 | /* override for forms.css */ | ||
| 1372 | .wp-filter p.search-box { | ||
| 1373 | float: none; | ||
| 1374 | width: 100%; | ||
| 1375 | margin-bottom: 20px; | ||
| 1376 | display: flex; | ||
| 1377 | } | ||
| 1378 | |||
| 1379 | } | ||
| 1380 | |||
| 1327 | @media only screen and (max-width: 782px) { | 1381 | @media only screen and (max-width: 782px) { |
| 1328 | .media-frame.mode-select .attachments-browser.fixed .media-toolbar { | 1382 | .media-frame.mode-select .attachments-browser.fixed .media-toolbar { |
| 1329 | top: 46px; | 1383 | top: 46px; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -838,20 +838,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; } | ... | @@ -838,20 +838,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; } |
| 838 | 838 | ||
| 839 | /* Major/minor publishing actions (classes) */ | 839 | /* Major/minor publishing actions (classes) */ |
| 840 | .nav-menus-php .major-publishing-actions { | 840 | .nav-menus-php .major-publishing-actions { |
| 841 | clear: both; | ||
| 842 | padding: 10px 0; | 841 | padding: 10px 0; |
| 843 | line-height: 2.15384615; | 842 | display: flex; |
| 844 | } | 843 | align-items: center; |
| 845 | |||
| 846 | .nav-menus-php .major-publishing-actions .publishing-action { | ||
| 847 | text-align: left; | ||
| 848 | float: left; | ||
| 849 | } | 844 | } |
| 850 | 845 | ||
| 851 | /* Same as the Publish Meta Box #delete-action */ | 846 | .nav-menus-php .major-publishing-actions > * { |
| 852 | .nav-menus-php .delete-action { | 847 | margin-left: 10px; |
| 853 | float: right; | ||
| 854 | line-height: 2.1; | ||
| 855 | } | 848 | } |
| 856 | 849 | ||
| 857 | .nav-menus-php .major-publishing-actions .form-invalid { | 850 | .nav-menus-php .major-publishing-actions .form-invalid { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -837,20 +837,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; } | ... | @@ -837,20 +837,13 @@ body.menu-max-depth-11 { min-width: 1280px !important; } |
| 837 | 837 | ||
| 838 | /* Major/minor publishing actions (classes) */ | 838 | /* Major/minor publishing actions (classes) */ |
| 839 | .nav-menus-php .major-publishing-actions { | 839 | .nav-menus-php .major-publishing-actions { |
| 840 | clear: both; | ||
| 841 | padding: 10px 0; | 840 | padding: 10px 0; |
| 842 | line-height: 2.15384615; | 841 | display: flex; |
| 843 | } | 842 | align-items: center; |
| 844 | |||
| 845 | .nav-menus-php .major-publishing-actions .publishing-action { | ||
| 846 | text-align: right; | ||
| 847 | float: right; | ||
| 848 | } | 843 | } |
| 849 | 844 | ||
| 850 | /* Same as the Publish Meta Box #delete-action */ | 845 | .nav-menus-php .major-publishing-actions > * { |
| 851 | .nav-menus-php .delete-action { | 846 | margin-right: 10px; |
| 852 | float: left; | ||
| 853 | line-height: 2.1; | ||
| 854 | } | 847 | } |
| 855 | 848 | ||
| 856 | .nav-menus-php .major-publishing-actions .form-invalid { | 849 | .nav-menus-php .major-publishing-actions .form-invalid { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -507,10 +507,12 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { | ... | @@ -507,10 +507,12 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
| 507 | z-index: 30; | 507 | z-index: 30; |
| 508 | box-sizing: border-box; | 508 | box-sizing: border-box; |
| 509 | border-top: 1px solid #f0f0f1; | 509 | border-top: 1px solid #f0f0f1; |
| 510 | display: flex; | ||
| 511 | justify-content: center; | ||
| 512 | gap: 5px; | ||
| 510 | } | 513 | } |
| 511 | 514 | ||
| 512 | .theme-overlay .theme-actions a { | 515 | .theme-overlay .theme-actions .button { |
| 513 | margin-left: 5px; | ||
| 514 | margin-bottom: 5px; | 516 | margin-bottom: 5px; |
| 515 | } | 517 | } |
| 516 | 518 | ||
| ... | @@ -522,26 +524,21 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { | ... | @@ -522,26 +524,21 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
| 522 | 524 | ||
| 523 | .broken-themes a.delete-theme, | 525 | .broken-themes a.delete-theme, |
| 524 | .theme-overlay .theme-actions .delete-theme { | 526 | .theme-overlay .theme-actions .delete-theme { |
| 525 | color: #d63638; | 527 | color: #b32d2e; |
| 526 | text-decoration: none; | 528 | text-decoration: none; |
| 527 | border-color: transparent; | 529 | border-color: transparent; |
| 528 | box-shadow: none; | 530 | box-shadow: none; |
| 529 | background: transparent; | 531 | background: transparent; |
| 530 | } | 532 | } |
| 531 | 533 | ||
| 532 | .theme-overlay .theme-actions .delete-theme { | ||
| 533 | position: absolute; | ||
| 534 | left: 10px; | ||
| 535 | bottom: 5px; | ||
| 536 | } | ||
| 537 | |||
| 538 | .broken-themes a.delete-theme:hover, | 534 | .broken-themes a.delete-theme:hover, |
| 539 | .broken-themes a.delete-theme:focus, | 535 | .broken-themes a.delete-theme:focus, |
| 540 | .theme-overlay .theme-actions .delete-theme:hover, | 536 | .theme-overlay .theme-actions .delete-theme:hover, |
| 541 | .theme-overlay .theme-actions .delete-theme:focus { | 537 | .theme-overlay .theme-actions .delete-theme:focus { |
| 542 | background: #d63638; | 538 | background: #b32d2e; |
| 543 | color: #fff; | 539 | color: #fff; |
| 544 | border-color: #d63638; | 540 | border-color: #b32d2e; |
| 541 | box-shadow: 0 0 0 1px #b32d2e; | ||
| 545 | } | 542 | } |
| 546 | 543 | ||
| 547 | .theme-overlay .theme-actions .active-theme, | 544 | .theme-overlay .theme-actions .active-theme, |
| ... | @@ -841,7 +838,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { | ... | @@ -841,7 +838,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
| 841 | } | 838 | } |
| 842 | } | 839 | } |
| 843 | 840 | ||
| 844 | @media only screen and (max-width: 780px) { | 841 | @media only screen and (max-width: 782px) { |
| 845 | body.folded .theme-overlay .theme-wrap, | 842 | body.folded .theme-overlay .theme-wrap, |
| 846 | .theme-overlay .theme-wrap { | 843 | .theme-overlay .theme-wrap { |
| 847 | top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ | 844 | top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -506,10 +506,12 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { | ... | @@ -506,10 +506,12 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
| 506 | z-index: 30; | 506 | z-index: 30; |
| 507 | box-sizing: border-box; | 507 | box-sizing: border-box; |
| 508 | border-top: 1px solid #f0f0f1; | 508 | border-top: 1px solid #f0f0f1; |
| 509 | display: flex; | ||
| 510 | justify-content: center; | ||
| 511 | gap: 5px; | ||
| 509 | } | 512 | } |
| 510 | 513 | ||
| 511 | .theme-overlay .theme-actions a { | 514 | .theme-overlay .theme-actions .button { |
| 512 | margin-right: 5px; | ||
| 513 | margin-bottom: 5px; | 515 | margin-bottom: 5px; |
| 514 | } | 516 | } |
| 515 | 517 | ||
| ... | @@ -521,26 +523,21 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { | ... | @@ -521,26 +523,21 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
| 521 | 523 | ||
| 522 | .broken-themes a.delete-theme, | 524 | .broken-themes a.delete-theme, |
| 523 | .theme-overlay .theme-actions .delete-theme { | 525 | .theme-overlay .theme-actions .delete-theme { |
| 524 | color: #d63638; | 526 | color: #b32d2e; |
| 525 | text-decoration: none; | 527 | text-decoration: none; |
| 526 | border-color: transparent; | 528 | border-color: transparent; |
| 527 | box-shadow: none; | 529 | box-shadow: none; |
| 528 | background: transparent; | 530 | background: transparent; |
| 529 | } | 531 | } |
| 530 | 532 | ||
| 531 | .theme-overlay .theme-actions .delete-theme { | ||
| 532 | position: absolute; | ||
| 533 | right: 10px; | ||
| 534 | bottom: 5px; | ||
| 535 | } | ||
| 536 | |||
| 537 | .broken-themes a.delete-theme:hover, | 533 | .broken-themes a.delete-theme:hover, |
| 538 | .broken-themes a.delete-theme:focus, | 534 | .broken-themes a.delete-theme:focus, |
| 539 | .theme-overlay .theme-actions .delete-theme:hover, | 535 | .theme-overlay .theme-actions .delete-theme:hover, |
| 540 | .theme-overlay .theme-actions .delete-theme:focus { | 536 | .theme-overlay .theme-actions .delete-theme:focus { |
| 541 | background: #d63638; | 537 | background: #b32d2e; |
| 542 | color: #fff; | 538 | color: #fff; |
| 543 | border-color: #d63638; | 539 | border-color: #b32d2e; |
| 540 | box-shadow: 0 0 0 1px #b32d2e; | ||
| 544 | } | 541 | } |
| 545 | 542 | ||
| 546 | .theme-overlay .theme-actions .active-theme, | 543 | .theme-overlay .theme-actions .active-theme, |
| ... | @@ -840,7 +837,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { | ... | @@ -840,7 +837,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
| 840 | } | 837 | } |
| 841 | } | 838 | } |
| 842 | 839 | ||
| 843 | @media only screen and (max-width: 780px) { | 840 | @media only screen and (max-width: 782px) { |
| 844 | body.folded .theme-overlay .theme-wrap, | 841 | body.folded .theme-overlay .theme-wrap, |
| 845 | .theme-overlay .theme-wrap { | 842 | .theme-overlay .theme-wrap { |
| 846 | top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ | 843 | top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
| ... | @@ -116,7 +116,7 @@ wp_enqueue_script( 'customize-controls' ); | ... | @@ -116,7 +116,7 @@ wp_enqueue_script( 'customize-controls' ); |
| 116 | wp_enqueue_style( 'customize-controls' ); | 116 | wp_enqueue_style( 'customize-controls' ); |
| 117 | 117 | ||
| 118 | /** | 118 | /** |
| 119 | * Enqueue Customizer control scripts. | 119 | * Fires when enqueuing Customizer control scripts. |
| 120 | * | 120 | * |
| 121 | * @since 3.4.0 | 121 | * @since 3.4.0 |
| 122 | */ | 122 | */ | ... | ... |
| ... | @@ -32,7 +32,14 @@ if ( $doaction ) { | ... | @@ -32,7 +32,14 @@ if ( $doaction ) { |
| 32 | 32 | ||
| 33 | $comment_status = wp_unslash( $_REQUEST['comment_status'] ); | 33 | $comment_status = wp_unslash( $_REQUEST['comment_status'] ); |
| 34 | $delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); | 34 | $delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); |
| 35 | $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) ); | 35 | $comment_ids = $wpdb->get_col( |
| 36 | $wpdb->prepare( | ||
| 37 | "SELECT comment_ID FROM $wpdb->comments | ||
| 38 | WHERE comment_approved = %s AND %s > comment_date_gmt", | ||
| 39 | $comment_status, | ||
| 40 | $delete_time | ||
| 41 | ) | ||
| 42 | ); | ||
| 36 | $doaction = 'delete'; | 43 | $doaction = 'delete'; |
| 37 | } elseif ( isset( $_REQUEST['delete_comments'] ) ) { | 44 | } elseif ( isset( $_REQUEST['delete_comments'] ) ) { |
| 38 | $comment_ids = $_REQUEST['delete_comments']; | 45 | $comment_ids = $_REQUEST['delete_comments']; |
| ... | @@ -52,7 +59,19 @@ if ( $doaction ) { | ... | @@ -52,7 +59,19 @@ if ( $doaction ) { |
| 52 | $untrashed = 0; | 59 | $untrashed = 0; |
| 53 | $deleted = 0; | 60 | $deleted = 0; |
| 54 | 61 | ||
| 55 | $redirect_to = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'spammed', 'unspammed', 'approved', 'unapproved', 'ids' ), wp_get_referer() ); | 62 | $redirect_to = remove_query_arg( |
| 63 | array( | ||
| 64 | 'trashed', | ||
| 65 | 'untrashed', | ||
| 66 | 'deleted', | ||
| 67 | 'spammed', | ||
| 68 | 'unspammed', | ||
| 69 | 'approved', | ||
| 70 | 'unapproved', | ||
| 71 | 'ids', | ||
| 72 | ), | ||
| 73 | wp_get_referer() | ||
| 74 | ); | ||
| 56 | $redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to ); | 75 | $redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to ); |
| 57 | 76 | ||
| 58 | wp_defer_comment_counting( true ); | 77 | wp_defer_comment_counting( true ); |
| ... | @@ -65,31 +84,31 @@ if ( $doaction ) { | ... | @@ -65,31 +84,31 @@ if ( $doaction ) { |
| 65 | switch ( $doaction ) { | 84 | switch ( $doaction ) { |
| 66 | case 'approve': | 85 | case 'approve': |
| 67 | wp_set_comment_status( $comment_id, 'approve' ); | 86 | wp_set_comment_status( $comment_id, 'approve' ); |
| 68 | $approved++; | 87 | ++$approved; |
| 69 | break; | 88 | break; |
| 70 | case 'unapprove': | 89 | case 'unapprove': |
| 71 | wp_set_comment_status( $comment_id, 'hold' ); | 90 | wp_set_comment_status( $comment_id, 'hold' ); |
| 72 | $unapproved++; | 91 | ++$unapproved; |
| 73 | break; | 92 | break; |
| 74 | case 'spam': | 93 | case 'spam': |
| 75 | wp_spam_comment( $comment_id ); | 94 | wp_spam_comment( $comment_id ); |
| 76 | $spammed++; | 95 | ++$spammed; |
| 77 | break; | 96 | break; |
| 78 | case 'unspam': | 97 | case 'unspam': |
| 79 | wp_unspam_comment( $comment_id ); | 98 | wp_unspam_comment( $comment_id ); |
| 80 | $unspammed++; | 99 | ++$unspammed; |
| 81 | break; | 100 | break; |
| 82 | case 'trash': | 101 | case 'trash': |
| 83 | wp_trash_comment( $comment_id ); | 102 | wp_trash_comment( $comment_id ); |
| 84 | $trashed++; | 103 | ++$trashed; |
| 85 | break; | 104 | break; |
| 86 | case 'untrash': | 105 | case 'untrash': |
| 87 | wp_untrash_comment( $comment_id ); | 106 | wp_untrash_comment( $comment_id ); |
| 88 | $untrashed++; | 107 | ++$untrashed; |
| 89 | break; | 108 | break; |
| 90 | case 'delete': | 109 | case 'delete': |
| 91 | wp_delete_comment( $comment_id ); | 110 | wp_delete_comment( $comment_id ); |
| 92 | $deleted++; | 111 | ++$deleted; |
| 93 | break; | 112 | break; |
| 94 | } | 113 | } |
| 95 | } | 114 | } |
| ... | @@ -197,7 +216,7 @@ get_current_screen()->add_help_tab( | ... | @@ -197,7 +216,7 @@ get_current_screen()->add_help_tab( |
| 197 | 'title' => __( 'Moderating Comments' ), | 216 | 'title' => __( 'Moderating Comments' ), |
| 198 | 'content' => | 217 | 'content' => |
| 199 | '<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' . | 218 | '<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' . |
| 200 | '<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . | 219 | '<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . |
| 201 | '<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' . | 220 | '<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' . |
| 202 | '<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' . | 221 | '<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' . |
| 203 | '<p>' . __( 'In the <strong>Submitted on</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' . | 222 | '<p>' . __( 'In the <strong>Submitted on</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' . |
| ... | @@ -282,11 +301,24 @@ if ( isset( $_REQUEST['error'] ) ) { | ... | @@ -282,11 +301,24 @@ if ( isset( $_REQUEST['error'] ) ) { |
| 282 | break; | 301 | break; |
| 283 | } | 302 | } |
| 284 | if ( $error_msg ) { | 303 | if ( $error_msg ) { |
| 285 | echo '<div id="moderated" class="error"><p>' . $error_msg . '</p></div>'; | 304 | wp_admin_notice( |
| 305 | $error_msg, | ||
| 306 | array( | ||
| 307 | 'id' => 'moderated', | ||
| 308 | 'additional_classes' => array( 'error' ), | ||
| 309 | ) | ||
| 310 | ); | ||
| 286 | } | 311 | } |
| 287 | } | 312 | } |
| 288 | 313 | ||
| 289 | if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) || isset( $_REQUEST['spammed'] ) || isset( $_REQUEST['unspammed'] ) || isset( $_REQUEST['same'] ) ) { | 314 | if ( isset( $_REQUEST['approved'] ) |
| 315 | || isset( $_REQUEST['deleted'] ) | ||
| 316 | || isset( $_REQUEST['trashed'] ) | ||
| 317 | || isset( $_REQUEST['untrashed'] ) | ||
| 318 | || isset( $_REQUEST['spammed'] ) | ||
| 319 | || isset( $_REQUEST['unspammed'] ) | ||
| 320 | || isset( $_REQUEST['same'] ) | ||
| 321 | ) { | ||
| 290 | $approved = isset( $_REQUEST['approved'] ) ? (int) $_REQUEST['approved'] : 0; | 322 | $approved = isset( $_REQUEST['approved'] ) ? (int) $_REQUEST['approved'] : 0; |
| 291 | $deleted = isset( $_REQUEST['deleted'] ) ? (int) $_REQUEST['deleted'] : 0; | 323 | $deleted = isset( $_REQUEST['deleted'] ) ? (int) $_REQUEST['deleted'] : 0; |
| 292 | $trashed = isset( $_REQUEST['trashed'] ) ? (int) $_REQUEST['trashed'] : 0; | 324 | $trashed = isset( $_REQUEST['trashed'] ) ? (int) $_REQUEST['trashed'] : 0; |
| ... | @@ -297,35 +329,63 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $ | ... | @@ -297,35 +329,63 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $ |
| 297 | 329 | ||
| 298 | if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) { | 330 | if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) { |
| 299 | if ( $approved > 0 ) { | 331 | if ( $approved > 0 ) { |
| 300 | /* translators: %s: Number of comments. */ | 332 | $messages[] = sprintf( |
| 301 | $messages[] = sprintf( _n( '%s comment approved.', '%s comments approved.', $approved ), $approved ); | 333 | /* translators: %s: Number of comments. */ |
| 334 | _n( '%s comment approved.', '%s comments approved.', $approved ), | ||
| 335 | $approved | ||
| 336 | ); | ||
| 302 | } | 337 | } |
| 303 | 338 | ||
| 304 | if ( $spammed > 0 ) { | 339 | if ( $spammed > 0 ) { |
| 305 | $ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0; | 340 | $ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0; |
| 306 | /* translators: %s: Number of comments. */ | 341 | |
| 307 | $messages[] = sprintf( _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ) . '">' . __( 'Undo' ) . '</a><br />'; | 342 | $messages[] = sprintf( |
| 343 | /* translators: %s: Number of comments. */ | ||
| 344 | _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), | ||
| 345 | $spammed | ||
| 346 | ) . sprintf( | ||
| 347 | ' <a href="%1$s">%2$s</a><br />', | ||
| 348 | esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ), | ||
| 349 | __( 'Undo' ) | ||
| 350 | ); | ||
| 308 | } | 351 | } |
| 309 | 352 | ||
| 310 | if ( $unspammed > 0 ) { | 353 | if ( $unspammed > 0 ) { |
| 311 | /* translators: %s: Number of comments. */ | 354 | $messages[] = sprintf( |
| 312 | $messages[] = sprintf( _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), $unspammed ); | 355 | /* translators: %s: Number of comments. */ |
| 356 | _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), | ||
| 357 | $unspammed | ||
| 358 | ); | ||
| 313 | } | 359 | } |
| 314 | 360 | ||
| 315 | if ( $trashed > 0 ) { | 361 | if ( $trashed > 0 ) { |
| 316 | $ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0; | 362 | $ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0; |
| 317 | /* translators: %s: Number of comments. */ | 363 | |
| 318 | $messages[] = sprintf( _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), $trashed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ) . '">' . __( 'Undo' ) . '</a><br />'; | 364 | $messages[] = sprintf( |
| 365 | /* translators: %s: Number of comments. */ | ||
| 366 | _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), | ||
| 367 | $trashed | ||
| 368 | ) . sprintf( | ||
| 369 | ' <a href="%1$s">%2$s</a><br />', | ||
| 370 | esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ), | ||
| 371 | __( 'Undo' ) | ||
| 372 | ); | ||
| 319 | } | 373 | } |
| 320 | 374 | ||
| 321 | if ( $untrashed > 0 ) { | 375 | if ( $untrashed > 0 ) { |
| 322 | /* translators: %s: Number of comments. */ | 376 | $messages[] = sprintf( |
| 323 | $messages[] = sprintf( _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), $untrashed ); | 377 | /* translators: %s: Number of comments. */ |
| 378 | _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), | ||
| 379 | $untrashed | ||
| 380 | ); | ||
| 324 | } | 381 | } |
| 325 | 382 | ||
| 326 | if ( $deleted > 0 ) { | 383 | if ( $deleted > 0 ) { |
| 327 | /* translators: %s: Number of comments. */ | 384 | $messages[] = sprintf( |
| 328 | $messages[] = sprintf( _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), $deleted ); | 385 | /* translators: %s: Number of comments. */ |
| 386 | _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), | ||
| 387 | $deleted | ||
| 388 | ); | ||
| 329 | } | 389 | } |
| 330 | 390 | ||
| 331 | if ( $same > 0 ) { | 391 | if ( $same > 0 ) { |
| ... | @@ -333,19 +393,38 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $ | ... | @@ -333,19 +393,38 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $ |
| 333 | if ( $comment ) { | 393 | if ( $comment ) { |
| 334 | switch ( $comment->comment_approved ) { | 394 | switch ( $comment->comment_approved ) { |
| 335 | case '1': | 395 | case '1': |
| 336 | $messages[] = __( 'This comment is already approved.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>'; | 396 | $messages[] = __( 'This comment is already approved.' ) . sprintf( |
| 397 | ' <a href="%1$s">%2$s</a>', | ||
| 398 | esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), | ||
| 399 | __( 'Edit comment' ) | ||
| 400 | ); | ||
| 337 | break; | 401 | break; |
| 338 | case 'trash': | 402 | case 'trash': |
| 339 | $messages[] = __( 'This comment is already in the Trash.' ) . ' <a href="' . esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ) . '"> ' . __( 'View Trash' ) . '</a>'; | 403 | $messages[] = __( 'This comment is already in the Trash.' ) . sprintf( |
| 404 | ' <a href="%1$s">%2$s</a>', | ||
| 405 | esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ), | ||
| 406 | __( 'View Trash' ) | ||
| 407 | ); | ||
| 340 | break; | 408 | break; |
| 341 | case 'spam': | 409 | case 'spam': |
| 342 | $messages[] = __( 'This comment is already marked as spam.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>'; | 410 | $messages[] = __( 'This comment is already marked as spam.' ) . sprintf( |
| 411 | ' <a href="%1$s">%2$s</a>', | ||
| 412 | esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), | ||
| 413 | __( 'Edit comment' ) | ||
| 414 | ); | ||
| 343 | break; | 415 | break; |
| 344 | } | 416 | } |
| 345 | } | 417 | } |
| 346 | } | 418 | } |
| 347 | 419 | ||
| 348 | echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>'; | 420 | wp_admin_notice( |
| 421 | implode( "<br />\n", $messages ), | ||
| 422 | array( | ||
| 423 | 'id' => 'moderated', | ||
| 424 | 'additional_classes' => array( 'updated' ), | ||
| 425 | 'dismissible' => true, | ||
| 426 | ) | ||
| 427 | ); | ||
| 349 | } | 428 | } |
| 350 | } | 429 | } |
| 351 | ?> | 430 | ?> | ... | ... |
| ... | @@ -440,17 +440,43 @@ if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create | ... | @@ -440,17 +440,43 @@ if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create |
| 440 | 440 | ||
| 441 | <hr class="wp-header-end"> | 441 | <hr class="wp-header-end"> |
| 442 | 442 | ||
| 443 | <?php if ( $notice ) : ?> | 443 | <?php |
| 444 | <div id="notice" class="notice notice-warning"><p id="has-newer-autosave"><?php echo $notice; ?></p></div> | 444 | if ( $notice ) : |
| 445 | <?php endif; ?> | 445 | wp_admin_notice( |
| 446 | <?php if ( $message ) : ?> | 446 | '<p id="has-newer-autosave">' . $notice . '</p>', |
| 447 | <div id="message" class="updated notice notice-success is-dismissible"><p><?php echo $message; ?></p></div> | 447 | array( |
| 448 | <?php endif; ?> | 448 | 'type' => 'warning', |
| 449 | <div id="lost-connection-notice" class="error hidden"> | 449 | 'id' => 'notice', |
| 450 | <p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you are reconnected.' ); ?> | 450 | 'paragraph_wrap' => false, |
| 451 | <span class="hide-if-no-sessionstorage"><?php _e( 'This post is being backed up in your browser, just in case.' ); ?></span> | 451 | ) |
| 452 | </p> | 452 | ); |
| 453 | </div> | 453 | endif; |
| 454 | if ( $message ) : | ||
| 455 | wp_admin_notice( | ||
| 456 | $message, | ||
| 457 | array( | ||
| 458 | 'type' => 'success', | ||
| 459 | 'dismissible' => true, | ||
| 460 | 'id' => 'message', | ||
| 461 | 'additional_classes' => array( 'updated' ), | ||
| 462 | ) | ||
| 463 | ); | ||
| 464 | endif; | ||
| 465 | |||
| 466 | $connection_lost_message = sprintf( | ||
| 467 | '<span class="spinner"></span> %1$s <span class="hide-if-no-sessionstorage">%2$s</span>', | ||
| 468 | __( '<strong>Connection lost.</strong> Saving has been disabled until you are reconnected.' ), | ||
| 469 | __( 'This post is being backed up in your browser, just in case.' ) | ||
| 470 | ); | ||
| 471 | |||
| 472 | wp_admin_notice( | ||
| 473 | $connection_lost_message, | ||
| 474 | array( | ||
| 475 | 'id' => 'lost-connection-notice', | ||
| 476 | 'additional_classes' => array( 'error', 'hidden' ), | ||
| 477 | ) | ||
| 478 | ); | ||
| 479 | ?> | ||
| 454 | <form name="post" action="post.php" method="post" id="post" | 480 | <form name="post" action="post.php" method="post" id="post" |
| 455 | <?php | 481 | <?php |
| 456 | /** | 482 | /** | ... | ... |
| ... | @@ -31,7 +31,7 @@ $current_screen->is_block_editor( true ); | ... | @@ -31,7 +31,7 @@ $current_screen->is_block_editor( true ); |
| 31 | // Default to is-fullscreen-mode to avoid jumps in the UI. | 31 | // Default to is-fullscreen-mode to avoid jumps in the UI. |
| 32 | add_filter( | 32 | add_filter( |
| 33 | 'admin_body_class', | 33 | 'admin_body_class', |
| 34 | static function( $classes ) { | 34 | static function ( $classes ) { |
| 35 | return "$classes is-fullscreen-mode"; | 35 | return "$classes is-fullscreen-mode"; |
| 36 | } | 36 | } |
| 37 | ); | 37 | ); |
| ... | @@ -319,27 +319,45 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -319,27 +319,45 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 319 | <?php // JavaScript is disabled. ?> | 319 | <?php // JavaScript is disabled. ?> |
| 320 | <div class="wrap hide-if-js block-editor-no-js"> | 320 | <div class="wrap hide-if-js block-editor-no-js"> |
| 321 | <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1> | 321 | <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1> |
| 322 | <div class="notice notice-error notice-alt"> | 322 | <?php |
| 323 | <p> | 323 | if ( file_exists( WP_PLUGIN_DIR . '/classic-editor/classic-editor.php' ) ) { |
| 324 | <?php | 324 | // If Classic Editor is already installed, provide a link to activate the plugin. |
| 325 | $message = sprintf( | 325 | $installed = true; |
| 326 | /* translators: %s: A link to install the Classic Editor plugin. */ | 326 | $plugin_activate_url = wp_nonce_url( 'plugins.php?action=activate&plugin=classic-editor/classic-editor.php', 'activate-plugin_classic-editor/classic-editor.php' ); |
| 327 | __( 'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or try the <a href="%s">Classic Editor plugin</a>.' ), | 327 | $message = sprintf( |
| 328 | esc_url( wp_nonce_url( self_admin_url( 'plugin-install.php?tab=favorites&user=wordpressdotorg&save=0' ), 'save_wporg_username_' . get_current_user_id() ) ) | 328 | /* translators: %s: Link to activate the Classic Editor plugin. */ |
| 329 | ); | 329 | __( 'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the <a href="%s">Classic Editor plugin</a>.' ), |
| 330 | 330 | esc_url( $plugin_activate_url ) | |
| 331 | /** | 331 | ); |
| 332 | * Filters the message displayed in the block editor interface when JavaScript is | 332 | } else { |
| 333 | * not enabled in the browser. | 333 | // If Classic Editor is not installed, provide a link to install it. |
| 334 | * | 334 | $installed = false; |
| 335 | * @since 5.0.3 | 335 | $plugin_install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=classic-editor' ), 'install-plugin_classic-editor' ); |
| 336 | * | 336 | $message = sprintf( |
| 337 | * @param string $message The message being displayed. | 337 | /* translators: %s: Link to install the Classic Editor plugin. */ |
| 338 | * @param WP_Post $post The post being edited. | 338 | __( 'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the <a href="%s">Classic Editor plugin</a>.' ), |
| 339 | */ | 339 | esc_url( $plugin_install_url ) |
| 340 | echo apply_filters( 'block_editor_no_javascript_message', $message, $post ); | 340 | ); |
| 341 | ?> | 341 | } |
| 342 | </p> | 342 | |
| 343 | </div> | 343 | /** |
| 344 | * Filters the message displayed in the block editor interface when JavaScript is | ||
| 345 | * not enabled in the browser. | ||
| 346 | * | ||
| 347 | * @since 5.0.3 | ||
| 348 | * @since 6.4.0 Added `$installed` parameter. | ||
| 349 | * | ||
| 350 | * @param string $message The message being displayed. | ||
| 351 | * @param WP_Post $post The post being edited. | ||
| 352 | * @param bool $installed Whether the classic editor is installed. | ||
| 353 | */ | ||
| 354 | $message = apply_filters( 'block_editor_no_javascript_message', $message, $post, $installed ); | ||
| 355 | wp_admin_notice( | ||
| 356 | $message, | ||
| 357 | array( | ||
| 358 | 'type' => 'error', | ||
| 359 | ) | ||
| 360 | ); | ||
| 361 | ?> | ||
| 344 | </div> | 362 | </div> |
| 345 | </div> | 363 | </div> | ... | ... |
| ... | @@ -87,13 +87,22 @@ echo esc_html( $title ); | ... | @@ -87,13 +87,22 @@ echo esc_html( $title ); |
| 87 | ?> | 87 | ?> |
| 88 | </h1> | 88 | </h1> |
| 89 | 89 | ||
| 90 | <a href="link-add.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'link' ); ?></a> | 90 | <a href="link-add.php" class="page-title-action"><?php echo esc_html__( 'Add New Link' ); ?></a> |
| 91 | 91 | ||
| 92 | <hr class="wp-header-end"> | 92 | <hr class="wp-header-end"> |
| 93 | 93 | ||
| 94 | <?php if ( isset( $_GET['added'] ) ) : ?> | 94 | <?php |
| 95 | <div id="message" class="updated notice is-dismissible"><p><?php _e( 'Link added.' ); ?></p></div> | 95 | if ( isset( $_GET['added'] ) ) { |
| 96 | <?php endif; ?> | 96 | wp_admin_notice( |
| 97 | __( 'Link added.' ), | ||
| 98 | array( | ||
| 99 | 'id' => 'message', | ||
| 100 | 'additional_classes' => array( 'updated' ), | ||
| 101 | 'dismissible' => true, | ||
| 102 | ) | ||
| 103 | ); | ||
| 104 | } | ||
| 105 | ?> | ||
| 97 | 106 | ||
| 98 | <form name="<?php echo esc_attr( $form_name ); ?>" id="<?php echo esc_attr( $form_name ); ?>" method="post" action="link.php"> | 107 | <form name="<?php echo esc_attr( $form_name ); ?>" id="<?php echo esc_attr( $form_name ); ?>" method="post" action="link.php"> |
| 99 | <?php | 108 | <?php |
| ... | @@ -121,7 +130,7 @@ wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); | ... | @@ -121,7 +130,7 @@ wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); |
| 121 | <div id="addressdiv" class="postbox"> | 130 | <div id="addressdiv" class="postbox"> |
| 122 | <h2 class="postbox-header"><label for="link_url"><?php _e( 'Web Address' ); ?></label></h2> | 131 | <h2 class="postbox-header"><label for="link_url"><?php _e( 'Web Address' ); ?></label></h2> |
| 123 | <div class="inside"> | 132 | <div class="inside"> |
| 124 | <input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_attr( $link->link_url ); ?>" id="link_url" /> | 133 | <input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_url( $link->link_url ); ?>" id="link_url" /> |
| 125 | <p><?php _e( 'Example: <code>https://wordpress.org/</code> — do not forget the <code>https://</code>' ); ?></p> | 134 | <p><?php _e( 'Example: <code>https://wordpress.org/</code> — do not forget the <code>https://</code>' ); ?></p> |
| 126 | </div> | 135 | </div> |
| 127 | </div> | 136 | </div> | ... | ... |
| ... | @@ -79,16 +79,18 @@ do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?> | ... | @@ -79,16 +79,18 @@ do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?> |
| 79 | $class = ( isset( $msg ) && 5 === $msg ) ? 'error' : 'success'; | 79 | $class = ( isset( $msg ) && 5 === $msg ) ? 'error' : 'success'; |
| 80 | 80 | ||
| 81 | if ( $message ) { | 81 | if ( $message ) { |
| 82 | ?> | 82 | $message = '<p><strong>' . $message . '</strong></p>'; |
| 83 | <div id="message" class="notice notice-<?php echo $class; ?>"> | 83 | if ( $wp_http_referer ) { |
| 84 | <p><strong><?php echo $message; ?></strong></p> | 84 | $message .= '<p><a href="' . esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ) . '">' . esc_html( $tax->labels->back_to_items ) . '</a></p>'; |
| 85 | <?php if ( $wp_http_referer ) { ?> | 85 | } |
| 86 | <p><a href="<?php echo esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ); ?>"> | 86 | wp_admin_notice( |
| 87 | <?php echo esc_html( $tax->labels->back_to_items ); ?> | 87 | $message, |
| 88 | </a></p> | 88 | array( |
| 89 | <?php } ?> | 89 | 'type' => $class, |
| 90 | </div> | 90 | 'id' => 'message', |
| 91 | <?php | 91 | 'paragraph_wrap' => false, |
| 92 | ) | ||
| 93 | ); | ||
| 92 | } | 94 | } |
| 93 | ?> | 95 | ?> |
| 94 | 96 | ... | ... |
| ... | @@ -348,9 +348,16 @@ if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { | ... | @@ -348,9 +348,16 @@ if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
| 348 | 348 | ||
| 349 | <hr class="wp-header-end"> | 349 | <hr class="wp-header-end"> |
| 350 | 350 | ||
| 351 | <?php if ( $message ) : ?> | 351 | <?php |
| 352 | <div id="message" class="<?php echo $class; ?> notice is-dismissible"><p><?php echo $message; ?></p></div> | 352 | if ( $message ) : |
| 353 | <?php | 353 | wp_admin_notice( |
| 354 | $message, | ||
| 355 | array( | ||
| 356 | 'id' => 'message', | ||
| 357 | 'additional_classes' => array( $class ), | ||
| 358 | 'dismissible' => true, | ||
| 359 | ) | ||
| 360 | ); | ||
| 354 | $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] ); | 361 | $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] ); |
| 355 | endif; | 362 | endif; |
| 356 | ?> | 363 | ?> | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-admin/images/about-header-background.svg
0 → 100644
This diff is collapsed.
Click to expand it.
wp-admin/images/about-header-contribute.svg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-admin/images/about-release-badge.svg
0 → 100644
This diff is collapsed.
Click to expand it.
wp-admin/images/contribute-code.svg
0 → 100644
This diff is collapsed.
Click to expand it.
wp-admin/images/contribute-main.svg
0 → 100644
This diff is collapsed.
Click to expand it.
wp-admin/images/contribute-no-code.svg
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-admin/js/password-toggle.js
0 → 100644
This diff is collapsed.
Click to expand it.
wp-admin/js/password-toggle.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-admin/network/contribute.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff is collapsed.
Click to expand it.
No preview for this file type
This diff is collapsed.
Click to expand it.
No preview for this file type
No preview for this file type
This diff is collapsed.
Click to expand it.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
934 KB
wp-content/themes/twentytwentyfour/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/block-supports/background.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/block-supports/shadow.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/block.json
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/editor-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/editor.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/editor.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/style-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/details/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/footnotes.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/footnotes/block.json
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/footnotes/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/footnotes/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/footnotes/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/view.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/view.js
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/view.min.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/view.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/page-list-item.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/style-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/view.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/view.js
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/view.min.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/query/view.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/view.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/view.js
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/view.min.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/view.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/class-wp-block-parser-block.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/class-wp-block-parser-frame.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/class-wp-duotone.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/class-wp-navigation-fallback.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
wp-includes/css/dist/commands/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/css/dist/commands/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/css/dist/commands/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/css/dist/patterns/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/css/dist/patterns/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/css/dist/patterns/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment