wp update
Showing
1000 changed files
with
716 additions
and
310 deletions
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
| 1 | WordPress - Web publishing software | 1 | WordPress - Web publishing software |
| 2 | 2 | ||
| 3 | Copyright 2011-2021 by the contributors | 3 | Copyright 2011-2022 by the contributors |
| 4 | 4 | ||
| 5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by | ... | ... |
| ... | @@ -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 higher.</li> | 54 | <li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or greater.</li> |
| 55 | <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or higher.</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 higher.</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.6</strong> or higher.</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.2</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> | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -22,9 +22,10 @@ if ( ! defined( 'WP_ADMIN' ) ) { | ... | @@ -22,9 +22,10 @@ if ( ! defined( 'WP_ADMIN' ) ) { |
| 22 | * @global string $update_title | 22 | * @global string $update_title |
| 23 | * @global int $total_update_count | 23 | * @global int $total_update_count |
| 24 | * @global string $parent_file | 24 | * @global string $parent_file |
| 25 | * @global string $typenow | ||
| 25 | */ | 26 | */ |
| 26 | global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, | 27 | global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, |
| 27 | $update_title, $total_update_count, $parent_file; | 28 | $update_title, $total_update_count, $parent_file, $typenow; |
| 28 | 29 | ||
| 29 | // Catch plugins that include admin-header.php before admin.php completes. | 30 | // Catch plugins that include admin-header.php before admin.php completes. |
| 30 | if ( empty( $current_screen ) ) { | 31 | if ( empty( $current_screen ) ) { |
| ... | @@ -48,8 +49,23 @@ if ( $admin_title === $title ) { | ... | @@ -48,8 +49,23 @@ if ( $admin_title === $title ) { |
| 48 | /* translators: Admin screen title. %s: Admin screen name. */ | 49 | /* translators: Admin screen title. %s: Admin screen name. */ |
| 49 | $admin_title = sprintf( __( '%s — WordPress' ), $title ); | 50 | $admin_title = sprintf( __( '%s — WordPress' ), $title ); |
| 50 | } else { | 51 | } else { |
| 52 | $screen_title = $title; | ||
| 53 | |||
| 54 | if ( 'post' === $current_screen->base && 'add' !== $current_screen->action ) { | ||
| 55 | $post_title = get_the_title(); | ||
| 56 | if ( ! empty( $post_title ) ) { | ||
| 57 | $post_type_obj = get_post_type_object( $typenow ); | ||
| 58 | $screen_title = sprintf( | ||
| 59 | /* translators: Editor admin screen title. 1: "Edit item" text for the post type, 2: Post title. */ | ||
| 60 | __( '%1$s “%2$s”' ), | ||
| 61 | $post_type_obj->labels->edit_item, | ||
| 62 | $post_title | ||
| 63 | ); | ||
| 64 | } | ||
| 65 | } | ||
| 66 | |||
| 51 | /* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */ | 67 | /* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */ |
| 52 | $admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, $admin_title ); | 68 | $admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $screen_title, $admin_title ); |
| 53 | } | 69 | } |
| 54 | 70 | ||
| 55 | if ( wp_is_recovery_mode() ) { | 71 | if ( wp_is_recovery_mode() ) { |
| ... | @@ -81,7 +97,7 @@ wp_enqueue_script( 'svg-painter' ); | ... | @@ -81,7 +97,7 @@ wp_enqueue_script( 'svg-painter' ); |
| 81 | $admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix ); | 97 | $admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix ); |
| 82 | ?> | 98 | ?> |
| 83 | <script type="text/javascript"> | 99 | <script type="text/javascript"> |
| 84 | addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(document).ready(func);else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; | 100 | addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; |
| 85 | var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>', | 101 | var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>', |
| 86 | pagenow = '<?php echo esc_js( $current_screen->id ); ?>', | 102 | pagenow = '<?php echo esc_js( $current_screen->id ); ?>', |
| 87 | typenow = '<?php echo esc_js( $current_screen->post_type ); ?>', | 103 | typenow = '<?php echo esc_js( $current_screen->post_type ); ?>', |
| ... | @@ -132,7 +148,7 @@ do_action( 'admin_print_scripts' ); | ... | @@ -132,7 +148,7 @@ do_action( 'admin_print_scripts' ); |
| 132 | /** | 148 | /** |
| 133 | * Fires in head section for a specific admin page. | 149 | * Fires in head section for a specific admin page. |
| 134 | * | 150 | * |
| 135 | * The dynamic portion of the hook, `$hook_suffix`, refers to the hook suffix | 151 | * The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix |
| 136 | * for the admin page. | 152 | * for the admin page. |
| 137 | * | 153 | * |
| 138 | * @since 2.1.0 | 154 | * @since 2.1.0 | ... | ... |
| ... | @@ -320,13 +320,24 @@ if ( isset( $plugin_page ) ) { | ... | @@ -320,13 +320,24 @@ if ( isset( $plugin_page ) ) { |
| 320 | * | 320 | * |
| 321 | * The dynamic portion of the hook name, `$importer`, refers to the importer slug. | 321 | * The dynamic portion of the hook name, `$importer`, refers to the importer slug. |
| 322 | * | 322 | * |
| 323 | * Possible hook names include: | ||
| 324 | * | ||
| 325 | * - `load-importer-blogger` | ||
| 326 | * - `load-importer-wpcat2tag` | ||
| 327 | * - `load-importer-livejournal` | ||
| 328 | * - `load-importer-mt` | ||
| 329 | * - `load-importer-rss` | ||
| 330 | * - `load-importer-tumblr` | ||
| 331 | * - `load-importer-wordpress` | ||
| 332 | * | ||
| 323 | * @since 3.5.0 | 333 | * @since 3.5.0 |
| 324 | */ | 334 | */ |
| 325 | do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores | 335 | do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
| 326 | 336 | ||
| 337 | // Used in the HTML title tag. | ||
| 338 | $title = __( 'Import' ); | ||
| 327 | $parent_file = 'tools.php'; | 339 | $parent_file = 'tools.php'; |
| 328 | $submenu_file = 'import.php'; | 340 | $submenu_file = 'import.php'; |
| 329 | $title = __( 'Import' ); | ||
| 330 | 341 | ||
| 331 | if ( ! isset( $_GET['noheader'] ) ) { | 342 | if ( ! isset( $_GET['noheader'] ) ) { |
| 332 | require_once ABSPATH . 'wp-admin/admin-header.php'; | 343 | require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | ... |
| ... | @@ -62,6 +62,7 @@ if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['a | ... | @@ -62,6 +62,7 @@ if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['a |
| 62 | } | 62 | } |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | // Used in the HTML title tag. | ||
| 65 | $title = __( 'Authorize Application' ); | 66 | $title = __( 'Authorize Application' ); |
| 66 | 67 | ||
| 67 | $app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : ''; | 68 | $app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : ''; |
| ... | @@ -90,7 +91,7 @@ if ( is_wp_error( $is_valid ) ) { | ... | @@ -90,7 +91,7 @@ if ( is_wp_error( $is_valid ) ) { |
| 90 | 91 | ||
| 91 | if ( wp_is_site_protected_by_basic_auth( 'front' ) ) { | 92 | if ( wp_is_site_protected_by_basic_auth( 'front' ) ) { |
| 92 | wp_die( | 93 | wp_die( |
| 93 | __( 'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.' ), | 94 | __( 'Your website appears to use Basic Authentication, which is not currently compatible with application passwords.' ), |
| 94 | __( 'Cannot Authorize Application' ), | 95 | __( 'Cannot Authorize Application' ), |
| 95 | array( | 96 | array( |
| 96 | 'response' => 501, | 97 | 'response' => 501, |
| ... | @@ -147,13 +148,13 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -147,13 +148,13 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 147 | <?php | 148 | <?php |
| 148 | printf( | 149 | printf( |
| 149 | /* translators: %s: Application name. */ | 150 | /* translators: %s: Application name. */ |
| 150 | __( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the app in question.' ), | 151 | __( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.' ), |
| 151 | '<strong>' . esc_html( $app_name ) . '</strong>' | 152 | '<strong>' . esc_html( $app_name ) . '</strong>' |
| 152 | ); | 153 | ); |
| 153 | ?> | 154 | ?> |
| 154 | </p> | 155 | </p> |
| 155 | <?php else : ?> | 156 | <?php else : ?> |
| 156 | <p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the app in question.' ); ?></p> | 157 | <p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the application in question.' ); ?></p> |
| 157 | <?php endif; ?> | 158 | <?php endif; ?> |
| 158 | 159 | ||
| 159 | <?php | 160 | <?php |
| ... | @@ -224,7 +225,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -224,7 +225,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 224 | 225 | ||
| 225 | <div class="form-field"> | 226 | <div class="form-field"> |
| 226 | <label for="app_name"><?php _e( 'New Application Password Name' ); ?></label> | 227 | <label for="app_name"><?php _e( 'New Application Password Name' ); ?></label> |
| 227 | <input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" placeholder="<?php esc_attr_e( 'WordPress App on My Phone' ); ?>" required /> | 228 | <input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" required /> |
| 228 | </div> | 229 | </div> |
| 229 | 230 | ||
| 230 | <?php | 231 | <?php |
| ... | @@ -247,7 +248,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -247,7 +248,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 247 | 248 | ||
| 248 | <?php | 249 | <?php |
| 249 | submit_button( | 250 | submit_button( |
| 250 | __( 'Yes, I approve of this connection.' ), | 251 | __( 'Yes, I approve of this connection' ), |
| 251 | 'primary', | 252 | 'primary', |
| 252 | 'approve', | 253 | 'approve', |
| 253 | false, | 254 | false, |
| ... | @@ -262,7 +263,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -262,7 +263,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 262 | printf( | 263 | printf( |
| 263 | /* translators: %s: The URL the user is being redirected to. */ | 264 | /* translators: %s: The URL the user is being redirected to. */ |
| 264 | __( 'You will be sent to %s' ), | 265 | __( 'You will be sent to %s' ), |
| 265 | '<strong><kbd>' . esc_html( | 266 | '<strong><code>' . esc_html( |
| 266 | add_query_arg( | 267 | add_query_arg( |
| 267 | array( | 268 | array( |
| 268 | 'site_url' => site_url(), | 269 | 'site_url' => site_url(), |
| ... | @@ -271,7 +272,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -271,7 +272,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 271 | ), | 272 | ), |
| 272 | $success_url | 273 | $success_url |
| 273 | ) | 274 | ) |
| 274 | ) . '</kbd></strong>' | 275 | ) . '</code></strong>' |
| 275 | ); | 276 | ); |
| 276 | } else { | 277 | } else { |
| 277 | _e( 'You will be given a password to manually enter into the application in question.' ); | 278 | _e( 'You will be given a password to manually enter into the application in question.' ); |
| ... | @@ -281,7 +282,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -281,7 +282,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 281 | 282 | ||
| 282 | <?php | 283 | <?php |
| 283 | submit_button( | 284 | submit_button( |
| 284 | __( 'No, I do not approve of this connection.' ), | 285 | __( 'No, I do not approve of this connection' ), |
| 285 | 'secondary', | 286 | 'secondary', |
| 286 | 'reject', | 287 | 'reject', |
| 287 | false, | 288 | false, |
| ... | @@ -296,7 +297,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; | ... | @@ -296,7 +297,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 296 | printf( | 297 | printf( |
| 297 | /* translators: %s: The URL the user is being redirected to. */ | 298 | /* translators: %s: The URL the user is being redirected to. */ |
| 298 | __( 'You will be sent to %s' ), | 299 | __( 'You will be sent to %s' ), |
| 299 | '<strong><kbd>' . esc_html( $reject_url ) . '</kbd></strong>' | 300 | '<strong><code>' . esc_html( $reject_url ) . '</code></strong>' |
| 300 | ); | 301 | ); |
| 301 | } else { | 302 | } else { |
| 302 | _e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' ); | 303 | _e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' ); | ... | ... |
| ... | @@ -53,6 +53,7 @@ if ( isset( $_REQUEST['c'] ) ) { | ... | @@ -53,6 +53,7 @@ if ( isset( $_REQUEST['c'] ) ) { |
| 53 | switch ( $action ) { | 53 | switch ( $action ) { |
| 54 | 54 | ||
| 55 | case 'editcomment': | 55 | case 'editcomment': |
| 56 | // Used in the HTML title tag. | ||
| 56 | $title = __( 'Edit Comment' ); | 57 | $title = __( 'Edit Comment' ); |
| 57 | 58 | ||
| 58 | get_current_screen()->add_help_tab( | 59 | get_current_screen()->add_help_tab( |
| ... | @@ -96,6 +97,7 @@ switch ( $action ) { | ... | @@ -96,6 +97,7 @@ switch ( $action ) { |
| 96 | case 'approve': | 97 | case 'approve': |
| 97 | case 'trash': | 98 | case 'trash': |
| 98 | case 'spam': | 99 | case 'spam': |
| 100 | // Used in the HTML title tag. | ||
| 99 | $title = __( 'Moderate Comment' ); | 101 | $title = __( 'Moderate Comment' ); |
| 100 | 102 | ||
| 101 | if ( ! $comment ) { | 103 | if ( ! $comment ) { | ... | ... |
| ... | @@ -10,6 +10,7 @@ | ... | @@ -10,6 +10,7 @@ |
| 10 | require_once __DIR__ . '/admin.php'; | 10 | require_once __DIR__ . '/admin.php'; |
| 11 | require_once __DIR__ . '/includes/credits.php'; | 11 | require_once __DIR__ . '/includes/credits.php'; |
| 12 | 12 | ||
| 13 | // Used in the HTML title tag. | ||
| 13 | $title = __( 'Credits' ); | 14 | $title = __( 'Credits' ); |
| 14 | 15 | ||
| 15 | list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); | 16 | list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); |
| ... | @@ -28,7 +29,13 @@ $credits = wp_credits(); | ... | @@ -28,7 +29,13 @@ $credits = wp_credits(); |
| 28 | </div> | 29 | </div> |
| 29 | 30 | ||
| 30 | <div class="about__header-text"> | 31 | <div class="about__header-text"> |
| 31 | <?php _e( 'WordPress 5.8 was created by a worldwide team of passionate individuals' ); ?> | 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 | ?> | ||
| 32 | </div> | 39 | </div> |
| 33 | 40 | ||
| 34 | <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> | 41 | <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> | ... | ... |
| ... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | ||
| 31 | /* Accent colors: used in header, on special classes. */ | 31 | /* Accent colors: used in header, on special classes. */ |
| 32 | --accent-1: #3858e9; /* Accent background, link color */ | 32 | --accent-1: #3858e9; /* Accent background, link color */ |
| 33 | --accent-2: #2d46ba; /* Header background */ | 33 | --accent-2: #3858e9; /* Header background */ |
| 34 | 34 | ||
| 35 | /* Navigation colors. */ | 35 | /* Navigation colors. */ |
| 36 | --nav-background: #fff; | 36 | --nav-background: #fff; |
| ... | @@ -141,25 +141,19 @@ | ... | @@ -141,25 +141,19 @@ |
| 141 | margin: 0 0 var(--gap); | 141 | margin: 0 0 var(--gap); |
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | .about__section .column { | 144 | .about__section .column:not(.is-edge-to-edge) { |
| 145 | padding: var(--gap); | 145 | padding: var(--gap); |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | .about__section + .about__section .column { | ||
| 149 | padding-top: 0; | ||
| 150 | } | ||
| 151 | |||
| 152 | .about__section + .about__section .is-section-header { | 148 | .about__section + .about__section .is-section-header { |
| 153 | padding-bottom: var(--gap); | 149 | padding-bottom: var(--gap); |
| 154 | } | 150 | } |
| 155 | 151 | ||
| 156 | .about__section .column[class*="background-color"], | 152 | .about__section .column[class*="background-color"], |
| 153 | .about__section:where([class*="background-color"]) .column, | ||
| 157 | .about__section .column.has-border { | 154 | .about__section .column.has-border { |
| 158 | padding-top: var(--gap); | 155 | padding-top: var(--gap); |
| 159 | } | 156 | padding-bottom: var(--gap); |
| 160 | |||
| 161 | .about__section .column.is-edge-to-edge { | ||
| 162 | padding: 0; | ||
| 163 | } | 157 | } |
| 164 | 158 | ||
| 165 | .about__section .column p:first-of-type { | 159 | .about__section .column p:first-of-type { |
| ... | @@ -215,7 +209,8 @@ | ... | @@ -215,7 +209,8 @@ |
| 215 | } | 209 | } |
| 216 | 210 | ||
| 217 | .about__section.has-gutters { | 211 | .about__section.has-gutters { |
| 218 | gap: calc(var(--gap) / 2); | 212 | gap: var(--gap); |
| 213 | margin-bottom: calc(var(--gap) * 2); | ||
| 219 | } | 214 | } |
| 220 | 215 | ||
| 221 | .about__section.has-2-columns { | 216 | .about__section.has-2-columns { |
| ... | @@ -223,11 +218,11 @@ | ... | @@ -223,11 +218,11 @@ |
| 223 | } | 218 | } |
| 224 | 219 | ||
| 225 | .about__section.has-2-columns.is-wider-right { | 220 | .about__section.has-2-columns.is-wider-right { |
| 226 | grid-template-columns: 1fr 2fr; | 221 | grid-template-columns: 2fr 3fr; |
| 227 | } | 222 | } |
| 228 | 223 | ||
| 229 | .about__section.has-2-columns.is-wider-left { | 224 | .about__section.has-2-columns.is-wider-left { |
| 230 | grid-template-columns: 2fr 1fr; | 225 | grid-template-columns: 3fr 2fr; |
| 231 | } | 226 | } |
| 232 | 227 | ||
| 233 | .about__section.has-2-columns .is-section-header { | 228 | .about__section.has-2-columns .is-section-header { |
| ... | @@ -329,13 +324,24 @@ | ... | @@ -329,13 +324,24 @@ |
| 329 | .about__section.has-2-columns.is-wider-left, | 324 | .about__section.has-2-columns.is-wider-left, |
| 330 | .about__section.has-3-columns { | 325 | .about__section.has-3-columns { |
| 331 | display: block; | 326 | display: block; |
| 332 | padding-bottom: calc(var(--gap) / 2); | 327 | margin-bottom: calc(var(--gap) / 2); |
| 328 | } | ||
| 329 | |||
| 330 | .about__section .column:not(.is-edge-to-edge) { | ||
| 331 | padding-top: var(--gap); | ||
| 332 | padding-bottom: var(--gap); | ||
| 333 | } | ||
| 334 | |||
| 335 | .about__section.has-2-columns.has-gutters.is-wider-right, | ||
| 336 | .about__section.has-2-columns.has-gutters.is-wider-left, | ||
| 337 | .about__section.has-3-columns.has-gutters { | ||
| 338 | margin-bottom: calc(var(--gap) * 2); | ||
| 333 | } | 339 | } |
| 334 | 340 | ||
| 335 | .about__section.has-2-columns.has-gutters .column, | 341 | .about__section.has-2-columns.has-gutters .column, |
| 336 | .about__section.has-2-columns.has-gutters .column, | 342 | .about__section.has-2-columns.has-gutters .column, |
| 337 | .about__section.has-3-columns.has-gutters .column { | 343 | .about__section.has-3-columns.has-gutters .column { |
| 338 | margin-bottom: calc(var(--gap) / 2); | 344 | margin-bottom: var(--gap); |
| 339 | } | 345 | } |
| 340 | 346 | ||
| 341 | .about__section.has-2-columns.has-gutters .column:last-child, | 347 | .about__section.has-2-columns.has-gutters .column:last-child, |
| ... | @@ -394,21 +400,25 @@ | ... | @@ -394,21 +400,25 @@ |
| 394 | @media screen and (max-width: 600px) { | 400 | @media screen and (max-width: 600px) { |
| 395 | .about__section.has-2-columns { | 401 | .about__section.has-2-columns { |
| 396 | display: block; | 402 | display: block; |
| 403 | margin-bottom: var(--gap); | ||
| 404 | } | ||
| 405 | |||
| 406 | .about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) { | ||
| 407 | padding-top: calc(var(--gap) / 2); | ||
| 397 | padding-bottom: calc(var(--gap) / 2); | 408 | padding-bottom: calc(var(--gap) / 2); |
| 398 | } | 409 | } |
| 399 | 410 | ||
| 411 | .about__section.has-2-columns.has-gutters { | ||
| 412 | margin-bottom: calc(var(--gap) * 2); | ||
| 413 | } | ||
| 414 | |||
| 400 | .about__section.has-2-columns.has-gutters .column { | 415 | .about__section.has-2-columns.has-gutters .column { |
| 401 | margin-bottom: calc(var(--gap) / 2); | 416 | margin-bottom: var(--gap); |
| 402 | } | 417 | } |
| 403 | 418 | ||
| 404 | .about__section.has-2-columns.has-gutters .column:last-child { | 419 | .about__section.has-2-columns.has-gutters .column:last-child { |
| 405 | margin-bottom: 0; | 420 | margin-bottom: 0; |
| 406 | } | 421 | } |
| 407 | |||
| 408 | .about__section.has-2-columns .column:nth-of-type(n) { | ||
| 409 | padding-top: calc(var(--gap) / 2); | ||
| 410 | padding-bottom: calc(var(--gap) / 2); | ||
| 411 | } | ||
| 412 | } | 422 | } |
| 413 | 423 | ||
| 414 | @media screen and (max-width: 480px) { | 424 | @media screen and (max-width: 480px) { |
| ... | @@ -471,6 +481,11 @@ | ... | @@ -471,6 +481,11 @@ |
| 471 | line-height: inherit; | 481 | line-height: inherit; |
| 472 | } | 482 | } |
| 473 | 483 | ||
| 484 | .about__container p.is-subheading { | ||
| 485 | margin-top: 0; | ||
| 486 | font-size: 1.8em; | ||
| 487 | } | ||
| 488 | |||
| 474 | .about__section a { | 489 | .about__section a { |
| 475 | color: var(--accent-1); | 490 | color: var(--accent-1); |
| 476 | text-decoration: underline; | 491 | text-decoration: underline; |
| ... | @@ -524,46 +539,6 @@ | ... | @@ -524,46 +539,6 @@ |
| 524 | margin-left: auto; | 539 | margin-left: auto; |
| 525 | } | 540 | } |
| 526 | 541 | ||
| 527 | .about__container .about__image-comparison { | ||
| 528 | position: relative; | ||
| 529 | display: inline-block; | ||
| 530 | max-width: 100%; | ||
| 531 | } | ||
| 532 | |||
| 533 | .about__container .about__image-comparison img { | ||
| 534 | -webkit-user-select: none; | ||
| 535 | user-select: none; | ||
| 536 | width: auto; | ||
| 537 | max-width: none; | ||
| 538 | max-height: 100%; | ||
| 539 | } | ||
| 540 | |||
| 541 | .about__container .about__image-comparison > img { | ||
| 542 | max-width: 100%; | ||
| 543 | } | ||
| 544 | |||
| 545 | .about__container .about__image-comparison-resize { | ||
| 546 | position: absolute !important; /* Needed to override inline style on ResizableBox */ | ||
| 547 | top: 0; | ||
| 548 | bottom: 0; | ||
| 549 | right: 0; | ||
| 550 | width: 50%; | ||
| 551 | max-width: 100%; | ||
| 552 | } | ||
| 553 | |||
| 554 | .about__container .about__image-comparison.no-js .about__image-comparison-resize { | ||
| 555 | overflow: hidden; | ||
| 556 | border-left: 2px solid var(--wp-admin-theme-color); | ||
| 557 | } | ||
| 558 | |||
| 559 | .about__container .about__image-comparison-resize .components-resizable-box__side-handle::before { | ||
| 560 | width: 4px; | ||
| 561 | left: calc(50% - 2px); | ||
| 562 | transition: none; | ||
| 563 | animation: none; | ||
| 564 | opacity: 1; | ||
| 565 | } | ||
| 566 | |||
| 567 | .about__container .about__image + h3 { | 542 | .about__container .about__image + h3 { |
| 568 | margin-top: 1.5em; | 543 | margin-top: 1.5em; |
| 569 | } | 544 | } |
| ... | @@ -612,25 +587,46 @@ | ... | @@ -612,25 +587,46 @@ |
| 612 | /* 1.3 - Header */ | 587 | /* 1.3 - Header */ |
| 613 | 588 | ||
| 614 | .about__header { | 589 | .about__header { |
| 590 | position: relative; | ||
| 615 | margin-bottom: var(--gap); | 591 | margin-bottom: var(--gap); |
| 616 | padding-top: 0; | 592 | padding-top: 0; |
| 617 | background-position: center; | 593 | background-image: url('../images/about-texture.png'); |
| 618 | background-repeat: no-repeat; | ||
| 619 | background-size: cover; | ||
| 620 | background-image: url('../images/about-header-about.svg'); | ||
| 621 | background-color: var(--accent-2); | 594 | background-color: var(--accent-2); |
| 595 | background-size: 500px 500px; | ||
| 596 | background-blend-mode: overlay; | ||
| 622 | color: var(--text-light); | 597 | color: var(--text-light); |
| 623 | } | 598 | } |
| 624 | 599 | ||
| 625 | .credits-php .about__header { | 600 | .about__header::before { |
| 601 | content: ""; | ||
| 602 | position: absolute; | ||
| 603 | top: 0; | ||
| 604 | left: 64px; | ||
| 605 | z-index: 0; | ||
| 606 | width: 300px; | ||
| 607 | height: 382px; | ||
| 608 | background: url(../images/about-header-about.svg) no-repeat center; | ||
| 609 | background-size: contain; | ||
| 610 | } | ||
| 611 | |||
| 612 | .credits-php .about__header::before { | ||
| 613 | top: auto; | ||
| 614 | bottom: 70px; | ||
| 615 | height: 310px; | ||
| 626 | background-image: url('../images/about-header-credits.svg'); | 616 | background-image: url('../images/about-header-credits.svg'); |
| 627 | } | 617 | } |
| 628 | 618 | ||
| 629 | .freedoms-php .about__header { | 619 | .freedoms-php .about__header::before { |
| 620 | top: calc(50% - 182px); | ||
| 621 | left: 32px; | ||
| 622 | width: 375px; | ||
| 623 | height: 300px; | ||
| 630 | background-image: url('../images/about-header-freedoms.svg'); | 624 | background-image: url('../images/about-header-freedoms.svg'); |
| 631 | } | 625 | } |
| 632 | 626 | ||
| 633 | .privacy-php .about__header { | 627 | .privacy-php .about__header::before { |
| 628 | top: auto; | ||
| 629 | bottom: -16px; | ||
| 634 | background-image: url('../images/about-header-privacy.svg'); | 630 | background-image: url('../images/about-header-privacy.svg'); |
| 635 | } | 631 | } |
| 636 | 632 | ||
| ... | @@ -639,7 +635,9 @@ | ... | @@ -639,7 +635,9 @@ |
| 639 | } | 635 | } |
| 640 | 636 | ||
| 641 | .about__header-title { | 637 | .about__header-title { |
| 642 | padding: 2rem 0 0; | 638 | box-sizing: border-box; |
| 639 | /* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */ | ||
| 640 | padding: 6rem 0 0 380px; | ||
| 643 | margin: 0 2rem; | 641 | margin: 0 2rem; |
| 644 | } | 642 | } |
| 645 | 643 | ||
| ... | @@ -652,14 +650,24 @@ | ... | @@ -652,14 +650,24 @@ |
| 652 | } | 650 | } |
| 653 | 651 | ||
| 654 | .about__header-text { | 652 | .about__header-text { |
| 655 | max-width: 42rem; | 653 | box-sizing: border-box; |
| 656 | margin: 0 0 5em; | 654 | margin: 0 0 7rem; |
| 657 | padding: 0 2rem; | 655 | /* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */ |
| 658 | font-size: 2rem; | 656 | padding: 0 2rem 0 380px; |
| 657 | font-size: 1.6rem; | ||
| 659 | line-height: 1.15; | 658 | line-height: 1.15; |
| 660 | } | 659 | } |
| 661 | 660 | ||
| 661 | .freedoms-php .about__header-title, | ||
| 662 | .freedoms-php .about__header-text { | ||
| 663 | /* 423px = 375px (balloon width) + 32px (offset from edge) + 16px (spacing). */ | ||
| 664 | padding-left: 423px; | ||
| 665 | margin-left: 0; | ||
| 666 | } | ||
| 667 | |||
| 662 | .about__header-navigation { | 668 | .about__header-navigation { |
| 669 | position: relative; | ||
| 670 | z-index: 1; | ||
| 663 | display: flex; | 671 | display: flex; |
| 664 | justify-content: center; | 672 | justify-content: center; |
| 665 | padding-top: 0; | 673 | padding-top: 0; |
| ... | @@ -708,6 +716,27 @@ | ... | @@ -708,6 +716,27 @@ |
| 708 | } | 716 | } |
| 709 | 717 | ||
| 710 | @media screen and (max-width: 782px) { | 718 | @media screen and (max-width: 782px) { |
| 719 | .about__header::before { | ||
| 720 | width: 240px; | ||
| 721 | height: 305px; | ||
| 722 | left: 32px; | ||
| 723 | } | ||
| 724 | |||
| 725 | .credits-php .about__header::before { | ||
| 726 | height: 248px; | ||
| 727 | } | ||
| 728 | |||
| 729 | .freedoms-php .about__header::before { | ||
| 730 | top: calc(50% - 132px); | ||
| 731 | height: 192px; | ||
| 732 | width: 240px; | ||
| 733 | } | ||
| 734 | |||
| 735 | .privacy-php .about__header::before { | ||
| 736 | bottom: 0; | ||
| 737 | height: 280px; | ||
| 738 | } | ||
| 739 | |||
| 711 | .about__container .about__header-text { | 740 | .about__container .about__header-text { |
| 712 | font-size: 1.4em; | 741 | font-size: 1.4em; |
| 713 | } | 742 | } |
| ... | @@ -717,12 +746,23 @@ | ... | @@ -717,12 +746,23 @@ |
| 717 | } | 746 | } |
| 718 | 747 | ||
| 719 | .about__header-title, | 748 | .about__header-title, |
| 749 | .about__header-text { | ||
| 750 | /* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */ | ||
| 751 | padding-left: 288px !important; | ||
| 752 | } | ||
| 753 | |||
| 754 | .about__header-title, | ||
| 720 | .about__header-image { | 755 | .about__header-image { |
| 721 | margin-right: calc(var(--gap) / 2); | 756 | margin-right: calc(var(--gap) / 2); |
| 722 | margin-left: calc(var(--gap) / 2); | 757 | margin-left: calc(var(--gap) / 2); |
| 723 | } | 758 | } |
| 724 | 759 | ||
| 725 | .about__header-text, | 760 | .about__header-text { |
| 761 | margin-top: 0; | ||
| 762 | margin-left: 0; | ||
| 763 | padding-right: calc(var(--gap) / 2); | ||
| 764 | } | ||
| 765 | |||
| 726 | .about__header-navigation .nav-tab { | 766 | .about__header-navigation .nav-tab { |
| 727 | margin-top: 0; | 767 | margin-top: 0; |
| 728 | margin-left: 0; | 768 | margin-left: 0; |
| ... | @@ -731,13 +771,28 @@ | ... | @@ -731,13 +771,28 @@ |
| 731 | } | 771 | } |
| 732 | } | 772 | } |
| 733 | 773 | ||
| 774 | @media screen and (max-width: 600px) { | ||
| 775 | .about__header::before { | ||
| 776 | display: none; | ||
| 777 | } | ||
| 778 | |||
| 779 | .about__header-title, | ||
| 780 | .about__header-text { | ||
| 781 | padding-left: calc(var(--gap) / 2) !important; | ||
| 782 | } | ||
| 783 | } | ||
| 784 | |||
| 734 | @media screen and (max-width: 480px) { | 785 | @media screen and (max-width: 480px) { |
| 735 | .about__header-title p { | 786 | .about__header-title p { |
| 736 | font-size: 2.4em; | 787 | font-size: 2.4em; |
| 737 | } | 788 | } |
| 738 | 789 | ||
| 790 | .about__header-title { | ||
| 791 | padding-top: 2rem; | ||
| 792 | } | ||
| 793 | |||
| 739 | .about__header-text { | 794 | .about__header-text { |
| 740 | margin-bottom: 1em; | 795 | margin-bottom: 2rem; |
| 741 | } | 796 | } |
| 742 | 797 | ||
| 743 | .about__header-navigation { | 798 | .about__header-navigation { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -29,7 +29,7 @@ | ... | @@ -29,7 +29,7 @@ |
| 29 | 29 | ||
| 30 | /* Accent colors: used in header, on special classes. */ | 30 | /* Accent colors: used in header, on special classes. */ |
| 31 | --accent-1: #3858e9; /* Accent background, link color */ | 31 | --accent-1: #3858e9; /* Accent background, link color */ |
| 32 | --accent-2: #2d46ba; /* Header background */ | 32 | --accent-2: #3858e9; /* Header background */ |
| 33 | 33 | ||
| 34 | /* Navigation colors. */ | 34 | /* Navigation colors. */ |
| 35 | --nav-background: #fff; | 35 | --nav-background: #fff; |
| ... | @@ -140,25 +140,19 @@ | ... | @@ -140,25 +140,19 @@ |
| 140 | margin: 0 0 var(--gap); | 140 | margin: 0 0 var(--gap); |
| 141 | } | 141 | } |
| 142 | 142 | ||
| 143 | .about__section .column { | 143 | .about__section .column:not(.is-edge-to-edge) { |
| 144 | padding: var(--gap); | 144 | padding: var(--gap); |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | .about__section + .about__section .column { | ||
| 148 | padding-top: 0; | ||
| 149 | } | ||
| 150 | |||
| 151 | .about__section + .about__section .is-section-header { | 147 | .about__section + .about__section .is-section-header { |
| 152 | padding-bottom: var(--gap); | 148 | padding-bottom: var(--gap); |
| 153 | } | 149 | } |
| 154 | 150 | ||
| 155 | .about__section .column[class*="background-color"], | 151 | .about__section .column[class*="background-color"], |
| 152 | .about__section:where([class*="background-color"]) .column, | ||
| 156 | .about__section .column.has-border { | 153 | .about__section .column.has-border { |
| 157 | padding-top: var(--gap); | 154 | padding-top: var(--gap); |
| 158 | } | 155 | padding-bottom: var(--gap); |
| 159 | |||
| 160 | .about__section .column.is-edge-to-edge { | ||
| 161 | padding: 0; | ||
| 162 | } | 156 | } |
| 163 | 157 | ||
| 164 | .about__section .column p:first-of-type { | 158 | .about__section .column p:first-of-type { |
| ... | @@ -214,7 +208,8 @@ | ... | @@ -214,7 +208,8 @@ |
| 214 | } | 208 | } |
| 215 | 209 | ||
| 216 | .about__section.has-gutters { | 210 | .about__section.has-gutters { |
| 217 | gap: calc(var(--gap) / 2); | 211 | gap: var(--gap); |
| 212 | margin-bottom: calc(var(--gap) * 2); | ||
| 218 | } | 213 | } |
| 219 | 214 | ||
| 220 | .about__section.has-2-columns { | 215 | .about__section.has-2-columns { |
| ... | @@ -222,11 +217,11 @@ | ... | @@ -222,11 +217,11 @@ |
| 222 | } | 217 | } |
| 223 | 218 | ||
| 224 | .about__section.has-2-columns.is-wider-right { | 219 | .about__section.has-2-columns.is-wider-right { |
| 225 | grid-template-columns: 1fr 2fr; | 220 | grid-template-columns: 2fr 3fr; |
| 226 | } | 221 | } |
| 227 | 222 | ||
| 228 | .about__section.has-2-columns.is-wider-left { | 223 | .about__section.has-2-columns.is-wider-left { |
| 229 | grid-template-columns: 2fr 1fr; | 224 | grid-template-columns: 3fr 2fr; |
| 230 | } | 225 | } |
| 231 | 226 | ||
| 232 | .about__section.has-2-columns .is-section-header { | 227 | .about__section.has-2-columns .is-section-header { |
| ... | @@ -328,13 +323,24 @@ | ... | @@ -328,13 +323,24 @@ |
| 328 | .about__section.has-2-columns.is-wider-left, | 323 | .about__section.has-2-columns.is-wider-left, |
| 329 | .about__section.has-3-columns { | 324 | .about__section.has-3-columns { |
| 330 | display: block; | 325 | display: block; |
| 331 | padding-bottom: calc(var(--gap) / 2); | 326 | margin-bottom: calc(var(--gap) / 2); |
| 327 | } | ||
| 328 | |||
| 329 | .about__section .column:not(.is-edge-to-edge) { | ||
| 330 | padding-top: var(--gap); | ||
| 331 | padding-bottom: var(--gap); | ||
| 332 | } | ||
| 333 | |||
| 334 | .about__section.has-2-columns.has-gutters.is-wider-right, | ||
| 335 | .about__section.has-2-columns.has-gutters.is-wider-left, | ||
| 336 | .about__section.has-3-columns.has-gutters { | ||
| 337 | margin-bottom: calc(var(--gap) * 2); | ||
| 332 | } | 338 | } |
| 333 | 339 | ||
| 334 | .about__section.has-2-columns.has-gutters .column, | 340 | .about__section.has-2-columns.has-gutters .column, |
| 335 | .about__section.has-2-columns.has-gutters .column, | 341 | .about__section.has-2-columns.has-gutters .column, |
| 336 | .about__section.has-3-columns.has-gutters .column { | 342 | .about__section.has-3-columns.has-gutters .column { |
| 337 | margin-bottom: calc(var(--gap) / 2); | 343 | margin-bottom: var(--gap); |
| 338 | } | 344 | } |
| 339 | 345 | ||
| 340 | .about__section.has-2-columns.has-gutters .column:last-child, | 346 | .about__section.has-2-columns.has-gutters .column:last-child, |
| ... | @@ -393,21 +399,25 @@ | ... | @@ -393,21 +399,25 @@ |
| 393 | @media screen and (max-width: 600px) { | 399 | @media screen and (max-width: 600px) { |
| 394 | .about__section.has-2-columns { | 400 | .about__section.has-2-columns { |
| 395 | display: block; | 401 | display: block; |
| 402 | margin-bottom: var(--gap); | ||
| 403 | } | ||
| 404 | |||
| 405 | .about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) { | ||
| 406 | padding-top: calc(var(--gap) / 2); | ||
| 396 | padding-bottom: calc(var(--gap) / 2); | 407 | padding-bottom: calc(var(--gap) / 2); |
| 397 | } | 408 | } |
| 398 | 409 | ||
| 410 | .about__section.has-2-columns.has-gutters { | ||
| 411 | margin-bottom: calc(var(--gap) * 2); | ||
| 412 | } | ||
| 413 | |||
| 399 | .about__section.has-2-columns.has-gutters .column { | 414 | .about__section.has-2-columns.has-gutters .column { |
| 400 | margin-bottom: calc(var(--gap) / 2); | 415 | margin-bottom: var(--gap); |
| 401 | } | 416 | } |
| 402 | 417 | ||
| 403 | .about__section.has-2-columns.has-gutters .column:last-child { | 418 | .about__section.has-2-columns.has-gutters .column:last-child { |
| 404 | margin-bottom: 0; | 419 | margin-bottom: 0; |
| 405 | } | 420 | } |
| 406 | |||
| 407 | .about__section.has-2-columns .column:nth-of-type(n) { | ||
| 408 | padding-top: calc(var(--gap) / 2); | ||
| 409 | padding-bottom: calc(var(--gap) / 2); | ||
| 410 | } | ||
| 411 | } | 421 | } |
| 412 | 422 | ||
| 413 | @media screen and (max-width: 480px) { | 423 | @media screen and (max-width: 480px) { |
| ... | @@ -470,6 +480,11 @@ | ... | @@ -470,6 +480,11 @@ |
| 470 | line-height: inherit; | 480 | line-height: inherit; |
| 471 | } | 481 | } |
| 472 | 482 | ||
| 483 | .about__container p.is-subheading { | ||
| 484 | margin-top: 0; | ||
| 485 | font-size: 1.8em; | ||
| 486 | } | ||
| 487 | |||
| 473 | .about__section a { | 488 | .about__section a { |
| 474 | color: var(--accent-1); | 489 | color: var(--accent-1); |
| 475 | text-decoration: underline; | 490 | text-decoration: underline; |
| ... | @@ -523,46 +538,6 @@ | ... | @@ -523,46 +538,6 @@ |
| 523 | margin-right: auto; | 538 | margin-right: auto; |
| 524 | } | 539 | } |
| 525 | 540 | ||
| 526 | .about__container .about__image-comparison { | ||
| 527 | position: relative; | ||
| 528 | display: inline-block; | ||
| 529 | max-width: 100%; | ||
| 530 | } | ||
| 531 | |||
| 532 | .about__container .about__image-comparison img { | ||
| 533 | -webkit-user-select: none; | ||
| 534 | user-select: none; | ||
| 535 | width: auto; | ||
| 536 | max-width: none; | ||
| 537 | max-height: 100%; | ||
| 538 | } | ||
| 539 | |||
| 540 | .about__container .about__image-comparison > img { | ||
| 541 | max-width: 100%; | ||
| 542 | } | ||
| 543 | |||
| 544 | .about__container .about__image-comparison-resize { | ||
| 545 | position: absolute !important; /* Needed to override inline style on ResizableBox */ | ||
| 546 | top: 0; | ||
| 547 | bottom: 0; | ||
| 548 | left: 0; | ||
| 549 | width: 50%; | ||
| 550 | max-width: 100%; | ||
| 551 | } | ||
| 552 | |||
| 553 | .about__container .about__image-comparison.no-js .about__image-comparison-resize { | ||
| 554 | overflow: hidden; | ||
| 555 | border-right: 2px solid var(--wp-admin-theme-color); | ||
| 556 | } | ||
| 557 | |||
| 558 | .about__container .about__image-comparison-resize .components-resizable-box__side-handle::before { | ||
| 559 | width: 4px; | ||
| 560 | right: calc(50% - 2px); | ||
| 561 | transition: none; | ||
| 562 | animation: none; | ||
| 563 | opacity: 1; | ||
| 564 | } | ||
| 565 | |||
| 566 | .about__container .about__image + h3 { | 541 | .about__container .about__image + h3 { |
| 567 | margin-top: 1.5em; | 542 | margin-top: 1.5em; |
| 568 | } | 543 | } |
| ... | @@ -611,25 +586,46 @@ | ... | @@ -611,25 +586,46 @@ |
| 611 | /* 1.3 - Header */ | 586 | /* 1.3 - Header */ |
| 612 | 587 | ||
| 613 | .about__header { | 588 | .about__header { |
| 589 | position: relative; | ||
| 614 | margin-bottom: var(--gap); | 590 | margin-bottom: var(--gap); |
| 615 | padding-top: 0; | 591 | padding-top: 0; |
| 616 | background-position: center; | 592 | background-image: url('../images/about-texture.png'); |
| 617 | background-repeat: no-repeat; | ||
| 618 | background-size: cover; | ||
| 619 | background-image: url('../images/about-header-about.svg'); | ||
| 620 | background-color: var(--accent-2); | 593 | background-color: var(--accent-2); |
| 594 | background-size: 500px 500px; | ||
| 595 | background-blend-mode: overlay; | ||
| 621 | color: var(--text-light); | 596 | color: var(--text-light); |
| 622 | } | 597 | } |
| 623 | 598 | ||
| 624 | .credits-php .about__header { | 599 | .about__header::before { |
| 600 | content: ""; | ||
| 601 | position: absolute; | ||
| 602 | top: 0; | ||
| 603 | right: 64px; | ||
| 604 | z-index: 0; | ||
| 605 | width: 300px; | ||
| 606 | height: 382px; | ||
| 607 | background: url(../images/about-header-about.svg) no-repeat center; | ||
| 608 | background-size: contain; | ||
| 609 | } | ||
| 610 | |||
| 611 | .credits-php .about__header::before { | ||
| 612 | top: auto; | ||
| 613 | bottom: 70px; | ||
| 614 | height: 310px; | ||
| 625 | background-image: url('../images/about-header-credits.svg'); | 615 | background-image: url('../images/about-header-credits.svg'); |
| 626 | } | 616 | } |
| 627 | 617 | ||
| 628 | .freedoms-php .about__header { | 618 | .freedoms-php .about__header::before { |
| 619 | top: calc(50% - 182px); | ||
| 620 | right: 32px; | ||
| 621 | width: 375px; | ||
| 622 | height: 300px; | ||
| 629 | background-image: url('../images/about-header-freedoms.svg'); | 623 | background-image: url('../images/about-header-freedoms.svg'); |
| 630 | } | 624 | } |
| 631 | 625 | ||
| 632 | .privacy-php .about__header { | 626 | .privacy-php .about__header::before { |
| 627 | top: auto; | ||
| 628 | bottom: -16px; | ||
| 633 | background-image: url('../images/about-header-privacy.svg'); | 629 | background-image: url('../images/about-header-privacy.svg'); |
| 634 | } | 630 | } |
| 635 | 631 | ||
| ... | @@ -638,7 +634,9 @@ | ... | @@ -638,7 +634,9 @@ |
| 638 | } | 634 | } |
| 639 | 635 | ||
| 640 | .about__header-title { | 636 | .about__header-title { |
| 641 | padding: 2rem 0 0; | 637 | box-sizing: border-box; |
| 638 | /* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */ | ||
| 639 | padding: 6rem 380px 0 0; | ||
| 642 | margin: 0 2rem; | 640 | margin: 0 2rem; |
| 643 | } | 641 | } |
| 644 | 642 | ||
| ... | @@ -651,14 +649,24 @@ | ... | @@ -651,14 +649,24 @@ |
| 651 | } | 649 | } |
| 652 | 650 | ||
| 653 | .about__header-text { | 651 | .about__header-text { |
| 654 | max-width: 42rem; | 652 | box-sizing: border-box; |
| 655 | margin: 0 0 5em; | 653 | margin: 0 0 7rem; |
| 656 | padding: 0 2rem; | 654 | /* 380px = 300px (balloon width) + 64px (offset from edge) + 16px (spacing). */ |
| 657 | font-size: 2rem; | 655 | padding: 0 380px 0 2rem; |
| 656 | font-size: 1.6rem; | ||
| 658 | line-height: 1.15; | 657 | line-height: 1.15; |
| 659 | } | 658 | } |
| 660 | 659 | ||
| 660 | .freedoms-php .about__header-title, | ||
| 661 | .freedoms-php .about__header-text { | ||
| 662 | /* 423px = 375px (balloon width) + 32px (offset from edge) + 16px (spacing). */ | ||
| 663 | padding-right: 423px; | ||
| 664 | margin-right: 0; | ||
| 665 | } | ||
| 666 | |||
| 661 | .about__header-navigation { | 667 | .about__header-navigation { |
| 668 | position: relative; | ||
| 669 | z-index: 1; | ||
| 662 | display: flex; | 670 | display: flex; |
| 663 | justify-content: center; | 671 | justify-content: center; |
| 664 | padding-top: 0; | 672 | padding-top: 0; |
| ... | @@ -707,6 +715,27 @@ | ... | @@ -707,6 +715,27 @@ |
| 707 | } | 715 | } |
| 708 | 716 | ||
| 709 | @media screen and (max-width: 782px) { | 717 | @media screen and (max-width: 782px) { |
| 718 | .about__header::before { | ||
| 719 | width: 240px; | ||
| 720 | height: 305px; | ||
| 721 | right: 32px; | ||
| 722 | } | ||
| 723 | |||
| 724 | .credits-php .about__header::before { | ||
| 725 | height: 248px; | ||
| 726 | } | ||
| 727 | |||
| 728 | .freedoms-php .about__header::before { | ||
| 729 | top: calc(50% - 132px); | ||
| 730 | height: 192px; | ||
| 731 | width: 240px; | ||
| 732 | } | ||
| 733 | |||
| 734 | .privacy-php .about__header::before { | ||
| 735 | bottom: 0; | ||
| 736 | height: 280px; | ||
| 737 | } | ||
| 738 | |||
| 710 | .about__container .about__header-text { | 739 | .about__container .about__header-text { |
| 711 | font-size: 1.4em; | 740 | font-size: 1.4em; |
| 712 | } | 741 | } |
| ... | @@ -716,12 +745,23 @@ | ... | @@ -716,12 +745,23 @@ |
| 716 | } | 745 | } |
| 717 | 746 | ||
| 718 | .about__header-title, | 747 | .about__header-title, |
| 748 | .about__header-text { | ||
| 749 | /* 288px = 240px (balloon width) + 32px (offset from edge) + 16px (spacing). */ | ||
| 750 | padding-right: 288px !important; | ||
| 751 | } | ||
| 752 | |||
| 753 | .about__header-title, | ||
| 719 | .about__header-image { | 754 | .about__header-image { |
| 720 | margin-left: calc(var(--gap) / 2); | 755 | margin-left: calc(var(--gap) / 2); |
| 721 | margin-right: calc(var(--gap) / 2); | 756 | margin-right: calc(var(--gap) / 2); |
| 722 | } | 757 | } |
| 723 | 758 | ||
| 724 | .about__header-text, | 759 | .about__header-text { |
| 760 | margin-top: 0; | ||
| 761 | margin-right: 0; | ||
| 762 | padding-left: calc(var(--gap) / 2); | ||
| 763 | } | ||
| 764 | |||
| 725 | .about__header-navigation .nav-tab { | 765 | .about__header-navigation .nav-tab { |
| 726 | margin-top: 0; | 766 | margin-top: 0; |
| 727 | margin-right: 0; | 767 | margin-right: 0; |
| ... | @@ -730,13 +770,28 @@ | ... | @@ -730,13 +770,28 @@ |
| 730 | } | 770 | } |
| 731 | } | 771 | } |
| 732 | 772 | ||
| 773 | @media screen and (max-width: 600px) { | ||
| 774 | .about__header::before { | ||
| 775 | display: none; | ||
| 776 | } | ||
| 777 | |||
| 778 | .about__header-title, | ||
| 779 | .about__header-text { | ||
| 780 | padding-right: calc(var(--gap) / 2) !important; | ||
| 781 | } | ||
| 782 | } | ||
| 783 | |||
| 733 | @media screen and (max-width: 480px) { | 784 | @media screen and (max-width: 480px) { |
| 734 | .about__header-title p { | 785 | .about__header-title p { |
| 735 | font-size: 2.4em; | 786 | font-size: 2.4em; |
| 736 | } | 787 | } |
| 737 | 788 | ||
| 789 | .about__header-title { | ||
| 790 | padding-top: 2rem; | ||
| 791 | } | ||
| 792 | |||
| 738 | .about__header-text { | 793 | .about__header-text { |
| 739 | margin-bottom: 1em; | 794 | margin-bottom: 2rem; |
| 740 | } | 795 | } |
| 741 | 796 | ||
| 742 | .about__header-navigation { | 797 | .about__header-navigation { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
| 40 | .icon16 { | 40 | .icon16 { |
| 41 | height: 18px; | 41 | height: 18px; |
| 42 | width: 18px; | 42 | width: 18px; |
| 43 | padding: 6px 6px; | 43 | padding: 6px; |
| 44 | margin: -6px -8px 0 0; | 44 | margin: -6px -8px 0 0; |
| 45 | float: right; | 45 | float: right; |
| 46 | } | 46 | } |
| ... | @@ -162,7 +162,6 @@ | ... | @@ -162,7 +162,6 @@ |
| 162 | #adminmenu li { | 162 | #adminmenu li { |
| 163 | margin: 0; | 163 | margin: 0; |
| 164 | padding: 0; | 164 | padding: 0; |
| 165 | cursor: pointer; | ||
| 166 | } | 165 | } |
| 167 | 166 | ||
| 168 | #adminmenu a { | 167 | #adminmenu a { |
| ... | @@ -346,7 +345,7 @@ | ... | @@ -346,7 +345,7 @@ |
| 346 | } | 345 | } |
| 347 | 346 | ||
| 348 | #adminmenu .wp-menu-image img { | 347 | #adminmenu .wp-menu-image img { |
| 349 | padding: 9px 0 0 0; | 348 | padding: 9px 0 0; |
| 350 | opacity: 0.6; | 349 | opacity: 0.6; |
| 351 | filter: alpha(opacity=60); | 350 | filter: alpha(opacity=60); |
| 352 | } | 351 | } |
| ... | @@ -489,7 +488,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -489,7 +488,7 @@ ul#adminmenu > li.current > a.current:after { |
| 489 | #adminmenu li.wp-menu-separator { | 488 | #adminmenu li.wp-menu-separator { |
| 490 | height: 5px; | 489 | height: 5px; |
| 491 | padding: 0; | 490 | padding: 0; |
| 492 | margin: 0 0 6px 0; | 491 | margin: 0 0 6px; |
| 493 | cursor: inherit; | 492 | cursor: inherit; |
| 494 | } | 493 | } |
| 495 | 494 | ||
| ... | @@ -504,7 +503,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -504,7 +503,7 @@ ul#adminmenu > li.current > a.current:after { |
| 504 | font-weight: 400; | 503 | font-weight: 400; |
| 505 | font-size: 14px; | 504 | font-size: 14px; |
| 506 | padding: 5px 11px 5px 4px; | 505 | padding: 5px 11px 5px 4px; |
| 507 | margin: -7px -5px 4px 0px; | 506 | margin: -7px -5px 4px 0; |
| 508 | border-width: 3px 5px 3px 0; | 507 | border-width: 3px 5px 3px 0; |
| 509 | border-style: solid; | 508 | border-style: solid; |
| 510 | border-color: transparent; | 509 | border-color: transparent; |
| ... | @@ -655,7 +654,7 @@ li#wp-admin-bar-menu-toggle { | ... | @@ -655,7 +654,7 @@ li#wp-admin-bar-menu-toggle { |
| 655 | .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, | 654 | .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, |
| 656 | .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, | 655 | .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, |
| 657 | .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { | 656 | .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { |
| 658 | top: 0px; | 657 | top: 0; |
| 659 | right: 36px; | 658 | right: 36px; |
| 660 | } | 659 | } |
| 661 | 660 | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
| 39 | .icon16 { | 39 | .icon16 { |
| 40 | height: 18px; | 40 | height: 18px; |
| 41 | width: 18px; | 41 | width: 18px; |
| 42 | padding: 6px 6px; | 42 | padding: 6px; |
| 43 | margin: -6px 0 0 -8px; | 43 | margin: -6px 0 0 -8px; |
| 44 | float: left; | 44 | float: left; |
| 45 | } | 45 | } |
| ... | @@ -161,7 +161,6 @@ | ... | @@ -161,7 +161,6 @@ |
| 161 | #adminmenu li { | 161 | #adminmenu li { |
| 162 | margin: 0; | 162 | margin: 0; |
| 163 | padding: 0; | 163 | padding: 0; |
| 164 | cursor: pointer; | ||
| 165 | } | 164 | } |
| 166 | 165 | ||
| 167 | #adminmenu a { | 166 | #adminmenu a { |
| ... | @@ -345,7 +344,7 @@ | ... | @@ -345,7 +344,7 @@ |
| 345 | } | 344 | } |
| 346 | 345 | ||
| 347 | #adminmenu .wp-menu-image img { | 346 | #adminmenu .wp-menu-image img { |
| 348 | padding: 9px 0 0 0; | 347 | padding: 9px 0 0; |
| 349 | opacity: 0.6; | 348 | opacity: 0.6; |
| 350 | filter: alpha(opacity=60); | 349 | filter: alpha(opacity=60); |
| 351 | } | 350 | } |
| ... | @@ -488,7 +487,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -488,7 +487,7 @@ ul#adminmenu > li.current > a.current:after { |
| 488 | #adminmenu li.wp-menu-separator { | 487 | #adminmenu li.wp-menu-separator { |
| 489 | height: 5px; | 488 | height: 5px; |
| 490 | padding: 0; | 489 | padding: 0; |
| 491 | margin: 0 0 6px 0; | 490 | margin: 0 0 6px; |
| 492 | cursor: inherit; | 491 | cursor: inherit; |
| 493 | } | 492 | } |
| 494 | 493 | ||
| ... | @@ -503,7 +502,7 @@ ul#adminmenu > li.current > a.current:after { | ... | @@ -503,7 +502,7 @@ ul#adminmenu > li.current > a.current:after { |
| 503 | font-weight: 400; | 502 | font-weight: 400; |
| 504 | font-size: 14px; | 503 | font-size: 14px; |
| 505 | padding: 5px 4px 5px 11px; | 504 | padding: 5px 4px 5px 11px; |
| 506 | margin: -7px 0px 4px -5px; | 505 | margin: -7px 0 4px -5px; |
| 507 | border-width: 3px 0 3px 5px; | 506 | border-width: 3px 0 3px 5px; |
| 508 | border-style: solid; | 507 | border-style: solid; |
| 509 | border-color: transparent; | 508 | border-color: transparent; |
| ... | @@ -654,7 +653,7 @@ li#wp-admin-bar-menu-toggle { | ... | @@ -654,7 +653,7 @@ li#wp-admin-bar-menu-toggle { |
| 654 | .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, | 653 | .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, |
| 655 | .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, | 654 | .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, |
| 656 | .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { | 655 | .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { |
| 657 | top: 0px; | 656 | top: 0; |
| 658 | left: 36px; | 657 | left: 36px; |
| 659 | } | 658 | } |
| 660 | 659 | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
| 12 | /* Needs higher specificiity. */ | 12 | /* Needs higher specificiity. */ |
| 13 | .wp-picker-container .wp-color-result.button { | 13 | .wp-picker-container .wp-color-result.button { |
| 14 | min-height: 30px; | 14 | min-height: 30px; |
| 15 | margin: 0 0px 6px 6px; | 15 | margin: 0 0 6px 6px; |
| 16 | padding: 0 30px 0 0; | 16 | padding: 0 30px 0 0; |
| 17 | font-size: 11px; | 17 | font-size: 11px; |
| 18 | } | 18 | } | ... | ... |
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | /* Needs higher specificiity. */ | 11 | /* Needs higher specificiity. */ |
| 12 | .wp-picker-container .wp-color-result.button { | 12 | .wp-picker-container .wp-color-result.button { |
| 13 | min-height: 30px; | 13 | min-height: 30px; |
| 14 | margin: 0 6px 6px 0px; | 14 | margin: 0 6px 6px 0; |
| 15 | padding: 0 0 0 30px; | 15 | padding: 0 0 0 30px; |
| 16 | font-size: 11px; | 16 | font-size: 11px; |
| 17 | } | 17 | } | ... | ... |
| ... | @@ -781,3 +781,17 @@ div#wp-responsive-toggle a:before { | ... | @@ -781,3 +781,17 @@ div#wp-responsive-toggle a:before { |
| 781 | color: $link; | 781 | color: $link; |
| 782 | } | 782 | } |
| 783 | } | 783 | } |
| 784 | |||
| 785 | /* Welcome Panel */ | ||
| 786 | |||
| 787 | .welcome-panel { | ||
| 788 | background-color: $highlight-color; | ||
| 789 | } | ||
| 790 | |||
| 791 | [class*="welcome-panel-icon"] { | ||
| 792 | @if ( $scheme-name == "light" ) { | ||
| 793 | background-color: $icon-color; | ||
| 794 | } @else { | ||
| 795 | background-color: $base-color; | ||
| 796 | } | ||
| 797 | } | ... | ... |
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #e1a948; | 703 | border-bottom-color: #e1a948; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #096484; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #52accc; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #e1a948; | 703 | border-bottom-color: #e1a948; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #096484; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #52accc; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { |
| 669 | .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 { | 669 | .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 { |
| 670 | border-bottom-color: #c7a589; | 670 | border-bottom-color: #c7a589; |
| 671 | color: #0073aa; | 671 | color: #0073aa; |
| 672 | } | ||
| 673 | |||
| 674 | /* Welcome Panel */ | ||
| 675 | .welcome-panel { | ||
| 676 | background-color: #c7a589; | ||
| 677 | } | ||
| 678 | |||
| 679 | [class*=welcome-panel-icon] { | ||
| 680 | background-color: #59524c; | ||
| 672 | } | 681 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { |
| 669 | .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 { | 669 | .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 { |
| 670 | border-bottom-color: #c7a589; | 670 | border-bottom-color: #c7a589; |
| 671 | color: #0073aa; | 671 | color: #0073aa; |
| 672 | } | ||
| 673 | |||
| 674 | /* Welcome Panel */ | ||
| 675 | .welcome-panel { | ||
| 676 | background-color: #c7a589; | ||
| 677 | } | ||
| 678 | |||
| 679 | [class*=welcome-panel-icon] { | ||
| 680 | background-color: #59524c; | ||
| 672 | } | 681 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #a3b745; | 703 | border-bottom-color: #a3b745; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #a3b745; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #523f6d; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #a3b745; | 703 | border-bottom-color: #a3b745; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #a3b745; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #523f6d; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before { | ... | @@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before { |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | 705 | } |
| 706 | 706 | ||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #04a4cc; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #999; | ||
| 714 | } | ||
| 715 | |||
| 707 | /* Override the theme filter highlight color for this scheme */ | 716 | /* Override the theme filter highlight color for this scheme */ |
| 708 | .theme-section.current, | 717 | .theme-section.current, |
| 709 | .theme-filter.current { | 718 | .theme-filter.current { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before { | ... | @@ -704,6 +704,15 @@ div#wp-responsive-toggle a:before { |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | 705 | } |
| 706 | 706 | ||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #04a4cc; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #999; | ||
| 714 | } | ||
| 715 | |||
| 707 | /* Override the theme filter highlight color for this scheme */ | 716 | /* Override the theme filter highlight color for this scheme */ |
| 708 | .theme-section.current, | 717 | .theme-section.current, |
| 709 | .theme-filter.current { | 718 | .theme-filter.current { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #e14d43; | 703 | border-bottom-color: #e14d43; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #e14d43; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #363b3f; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #e14d43; | 703 | border-bottom-color: #e14d43; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #e14d43; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #363b3f; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #3858e9; | 703 | border-bottom-color: #3858e9; |
| 704 | color: #3858e9; | 704 | color: #3858e9; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #3858e9; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #1e1e1e; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #3858e9; | 703 | border-bottom-color: #3858e9; |
| 704 | color: #3858e9; | 704 | color: #3858e9; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #3858e9; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #1e1e1e; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { |
| 669 | .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 { | 669 | .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 { |
| 670 | border-bottom-color: #9ebaa0; | 670 | border-bottom-color: #9ebaa0; |
| 671 | color: #0073aa; | 671 | color: #0073aa; |
| 672 | } | ||
| 673 | |||
| 674 | /* Welcome Panel */ | ||
| 675 | .welcome-panel { | ||
| 676 | background-color: #9ebaa0; | ||
| 677 | } | ||
| 678 | |||
| 679 | [class*=welcome-panel-icon] { | ||
| 680 | background-color: #738e96; | ||
| 672 | } | 681 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -669,4 +669,13 @@ div#wp-responsive-toggle a:before { |
| 669 | .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 { | 669 | .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 { |
| 670 | border-bottom-color: #9ebaa0; | 670 | border-bottom-color: #9ebaa0; |
| 671 | color: #0073aa; | 671 | color: #0073aa; |
| 672 | } | ||
| 673 | |||
| 674 | /* Welcome Panel */ | ||
| 675 | .welcome-panel { | ||
| 676 | background-color: #9ebaa0; | ||
| 677 | } | ||
| 678 | |||
| 679 | [class*=welcome-panel-icon] { | ||
| 680 | background-color: #738e96; | ||
| 672 | } | 681 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #dd823b; | 703 | border-bottom-color: #dd823b; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #dd823b; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #cf4944; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { | ... | @@ -702,4 +702,13 @@ div#wp-responsive-toggle a:before { |
| 702 | .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 { | 702 | .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 { |
| 703 | border-bottom-color: #dd823b; | 703 | border-bottom-color: #dd823b; |
| 704 | color: #0073aa; | 704 | color: #0073aa; |
| 705 | } | ||
| 706 | |||
| 707 | /* Welcome Panel */ | ||
| 708 | .welcome-panel { | ||
| 709 | background-color: #dd823b; | ||
| 710 | } | ||
| 711 | |||
| 712 | [class*=welcome-panel-icon] { | ||
| 713 | background-color: #cf4944; | ||
| 705 | } | 714 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -418,7 +418,7 @@ code { | ... | @@ -418,7 +418,7 @@ code { |
| 418 | 418 | ||
| 419 | kbd, | 419 | kbd, |
| 420 | code { | 420 | code { |
| 421 | padding: 3px 5px 2px 5px; | 421 | padding: 3px 5px 2px; |
| 422 | margin: 0 1px; | 422 | margin: 0 1px; |
| 423 | background: #f0f0f1; | 423 | background: #f0f0f1; |
| 424 | background: rgba(0, 0, 0, 0.07); | 424 | background: rgba(0, 0, 0, 0.07); |
| ... | @@ -583,7 +583,7 @@ code { | ... | @@ -583,7 +583,7 @@ code { |
| 583 | font-size: 23px; | 583 | font-size: 23px; |
| 584 | font-weight: 400; | 584 | font-weight: 400; |
| 585 | margin: 0; | 585 | margin: 0; |
| 586 | padding: 9px 0 4px 0; | 586 | padding: 9px 0 4px; |
| 587 | line-height: 1.3; | 587 | line-height: 1.3; |
| 588 | } | 588 | } |
| 589 | 589 | ||
| ... | @@ -824,8 +824,6 @@ img.emoji { | ... | @@ -824,8 +824,6 @@ img.emoji { |
| 824 | outline: 0; | 824 | outline: 0; |
| 825 | } | 825 | } |
| 826 | 826 | ||
| 827 | .welcome-panel .welcome-panel-close:hover:before, | ||
| 828 | .welcome-panel .welcome-panel-close:focus:before, | ||
| 829 | .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, | 827 | .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, |
| 830 | .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, | 828 | .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, |
| 831 | #bulk-titles div a:hover:before, | 829 | #bulk-titles div a:hover:before, |
| ... | @@ -884,7 +882,8 @@ hr { | ... | @@ -884,7 +882,8 @@ hr { |
| 884 | #media-items a.delete-permanently, | 882 | #media-items a.delete-permanently, |
| 885 | #nav-menu-footer .menu-delete, | 883 | #nav-menu-footer .menu-delete, |
| 886 | #delete-link a.delete, | 884 | #delete-link a.delete, |
| 887 | a#remove-post-thumbnail { | 885 | a#remove-post-thumbnail, |
| 886 | .privacy_requests .remove-personal-data .remove-personal-data-handle { | ||
| 888 | color: #b32d2e; | 887 | color: #b32d2e; |
| 889 | } | 888 | } |
| 890 | 889 | ||
| ... | @@ -902,7 +901,8 @@ span.required, | ... | @@ -902,7 +901,8 @@ span.required, |
| 902 | #media-items a.delete-permanently:hover, | 901 | #media-items a.delete-permanently:hover, |
| 903 | #nav-menu-footer .menu-delete:hover, | 902 | #nav-menu-footer .menu-delete:hover, |
| 904 | #delete-link a.delete:hover, | 903 | #delete-link a.delete:hover, |
| 905 | a#remove-post-thumbnail:hover { | 904 | a#remove-post-thumbnail:hover, |
| 905 | .privacy_requests .remove-personal-data .remove-personal-data-handle:hover { | ||
| 906 | color: #b32d2e; | 906 | color: #b32d2e; |
| 907 | border: none; | 907 | border: none; |
| 908 | } | 908 | } |
| ... | @@ -958,7 +958,7 @@ a#remove-post-thumbnail:hover { | ... | @@ -958,7 +958,7 @@ a#remove-post-thumbnail:hover { |
| 958 | } | 958 | } |
| 959 | 959 | ||
| 960 | #minor-publishing-actions { | 960 | #minor-publishing-actions { |
| 961 | padding: 10px 10px 0 10px; | 961 | padding: 10px 10px 0; |
| 962 | text-align: left; | 962 | text-align: left; |
| 963 | } | 963 | } |
| 964 | 964 | ||
| ... | @@ -1233,7 +1233,7 @@ th.action-links { | ... | @@ -1233,7 +1233,7 @@ th.action-links { |
| 1233 | 1233 | ||
| 1234 | .filter-group .filter-group-feature label { | 1234 | .filter-group .filter-group-feature label { |
| 1235 | display: block; | 1235 | display: block; |
| 1236 | margin: 14px 23px 14px 0px; | 1236 | margin: 14px 23px 14px 0; |
| 1237 | } | 1237 | } |
| 1238 | 1238 | ||
| 1239 | .filter-drawer .buttons { | 1239 | .filter-drawer .buttons { |
| ... | @@ -1610,7 +1610,7 @@ form.upgrade { | ... | @@ -1610,7 +1610,7 @@ form.upgrade { |
| 1610 | form.upgrade .hint { | 1610 | form.upgrade .hint { |
| 1611 | font-style: italic; | 1611 | font-style: italic; |
| 1612 | font-size: 85%; | 1612 | font-size: 85%; |
| 1613 | margin: -0.5em 0 2em 0; | 1613 | margin: -0.5em 0 2em; |
| 1614 | } | 1614 | } |
| 1615 | 1615 | ||
| 1616 | .update-php .spinner { | 1616 | .update-php .spinner { |
| ... | @@ -1708,7 +1708,7 @@ p.auto-update-status { | ... | @@ -1708,7 +1708,7 @@ p.auto-update-status { |
| 1708 | /* screen options and help tabs revert */ | 1708 | /* screen options and help tabs revert */ |
| 1709 | #screen-meta { | 1709 | #screen-meta { |
| 1710 | display: none; | 1710 | display: none; |
| 1711 | margin: 0 0px -1px 20px; | 1711 | margin: 0 0 -1px 20px; |
| 1712 | position: relative; | 1712 | position: relative; |
| 1713 | background-color: #fff; | 1713 | background-color: #fff; |
| 1714 | border: 1px solid #c3c4c7; | 1714 | border: 1px solid #c3c4c7; |
| ... | @@ -3144,7 +3144,7 @@ img { | ... | @@ -3144,7 +3144,7 @@ img { |
| 3144 | width: 300px; | 3144 | width: 300px; |
| 3145 | } | 3145 | } |
| 3146 | 3146 | ||
| 3147 | /* Theme/Plugin Editor */ | 3147 | /* Theme/Plugin file editor */ |
| 3148 | .alignleft h2 { | 3148 | .alignleft h2 { |
| 3149 | margin: 0; | 3149 | margin: 0; |
| 3150 | } | 3150 | } |
| ... | @@ -3197,7 +3197,7 @@ img { | ... | @@ -3197,7 +3197,7 @@ img { |
| 3197 | } | 3197 | } |
| 3198 | 3198 | ||
| 3199 | /* | 3199 | /* |
| 3200 | * Styles for Theme and Plugin editors. | 3200 | * Styles for Theme and Plugin file editors. |
| 3201 | */ | 3201 | */ |
| 3202 | 3202 | ||
| 3203 | /* Hide collapsed items. */ | 3203 | /* Hide collapsed items. */ |
| ... | @@ -3286,7 +3286,7 @@ img { | ... | @@ -3286,7 +3286,7 @@ img { |
| 3286 | .tree-folder > .current-file::before { | 3286 | .tree-folder > .current-file::before { |
| 3287 | right: 4px; | 3287 | right: 4px; |
| 3288 | height: 15px; | 3288 | height: 15px; |
| 3289 | width: 0px; | 3289 | width: 0; |
| 3290 | border-right: none; | 3290 | border-right: none; |
| 3291 | top: 3px; | 3291 | top: 3px; |
| 3292 | } | 3292 | } |
| ... | @@ -3381,7 +3381,7 @@ img { | ... | @@ -3381,7 +3381,7 @@ img { |
| 3381 | } | 3381 | } |
| 3382 | 3382 | ||
| 3383 | #templateside li.howto { | 3383 | #templateside li.howto { |
| 3384 | padding: 6px 12px 12px 12px; | 3384 | padding: 6px 12px 12px; |
| 3385 | } | 3385 | } |
| 3386 | 3386 | ||
| 3387 | .theme-editor-php .highlight { | 3387 | .theme-editor-php .highlight { |
| ... | @@ -3433,7 +3433,7 @@ img { | ... | @@ -3433,7 +3433,7 @@ img { |
| 3433 | } | 3433 | } |
| 3434 | 3434 | ||
| 3435 | .widget-top .widget-action .toggle-indicator:before { | 3435 | .widget-top .widget-action .toggle-indicator:before { |
| 3436 | padding: 1px 0px 1px 2px; | 3436 | padding: 1px 0 1px 2px; |
| 3437 | border-radius: 50%; | 3437 | border-radius: 50%; |
| 3438 | } | 3438 | } |
| 3439 | 3439 | ||
| ... | @@ -3828,7 +3828,7 @@ img { | ... | @@ -3828,7 +3828,7 @@ img { |
| 3828 | .wrap div.updated, | 3828 | .wrap div.updated, |
| 3829 | .wrap div.error, | 3829 | .wrap div.error, |
| 3830 | .media-upload-form div.error { | 3830 | .media-upload-form div.error { |
| 3831 | margin: 20px 0 10px 0; | 3831 | margin: 20px 0 10px; |
| 3832 | padding: 5px 10px; | 3832 | padding: 5px 10px; |
| 3833 | font-size: 14px; | 3833 | font-size: 14px; |
| 3834 | line-height: 175%; | 3834 | line-height: 175%; |
| ... | @@ -3938,7 +3938,7 @@ img { | ... | @@ -3938,7 +3938,7 @@ img { |
| 3938 | right: -8px; | 3938 | right: -8px; |
| 3939 | } | 3939 | } |
| 3940 | .tree-folder > li::before { | 3940 | .tree-folder > li::before { |
| 3941 | top: 0px; | 3941 | top: 0; |
| 3942 | height: 13px; | 3942 | height: 13px; |
| 3943 | } | 3943 | } |
| 3944 | .tree-folder > .current-file::before { | 3944 | .tree-folder > .current-file::before { | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -417,7 +417,7 @@ code { | ... | @@ -417,7 +417,7 @@ code { |
| 417 | 417 | ||
| 418 | kbd, | 418 | kbd, |
| 419 | code { | 419 | code { |
| 420 | padding: 3px 5px 2px 5px; | 420 | padding: 3px 5px 2px; |
| 421 | margin: 0 1px; | 421 | margin: 0 1px; |
| 422 | background: #f0f0f1; | 422 | background: #f0f0f1; |
| 423 | background: rgba(0, 0, 0, 0.07); | 423 | background: rgba(0, 0, 0, 0.07); |
| ... | @@ -582,7 +582,7 @@ code { | ... | @@ -582,7 +582,7 @@ code { |
| 582 | font-size: 23px; | 582 | font-size: 23px; |
| 583 | font-weight: 400; | 583 | font-weight: 400; |
| 584 | margin: 0; | 584 | margin: 0; |
| 585 | padding: 9px 0 4px 0; | 585 | padding: 9px 0 4px; |
| 586 | line-height: 1.3; | 586 | line-height: 1.3; |
| 587 | } | 587 | } |
| 588 | 588 | ||
| ... | @@ -823,8 +823,6 @@ img.emoji { | ... | @@ -823,8 +823,6 @@ img.emoji { |
| 823 | outline: 0; | 823 | outline: 0; |
| 824 | } | 824 | } |
| 825 | 825 | ||
| 826 | .welcome-panel .welcome-panel-close:hover:before, | ||
| 827 | .welcome-panel .welcome-panel-close:focus:before, | ||
| 828 | .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, | 826 | .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, |
| 829 | .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, | 827 | .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, |
| 830 | #bulk-titles div a:hover:before, | 828 | #bulk-titles div a:hover:before, |
| ... | @@ -883,7 +881,8 @@ hr { | ... | @@ -883,7 +881,8 @@ hr { |
| 883 | #media-items a.delete-permanently, | 881 | #media-items a.delete-permanently, |
| 884 | #nav-menu-footer .menu-delete, | 882 | #nav-menu-footer .menu-delete, |
| 885 | #delete-link a.delete, | 883 | #delete-link a.delete, |
| 886 | a#remove-post-thumbnail { | 884 | a#remove-post-thumbnail, |
| 885 | .privacy_requests .remove-personal-data .remove-personal-data-handle { | ||
| 887 | color: #b32d2e; | 886 | color: #b32d2e; |
| 888 | } | 887 | } |
| 889 | 888 | ||
| ... | @@ -901,7 +900,8 @@ span.required, | ... | @@ -901,7 +900,8 @@ span.required, |
| 901 | #media-items a.delete-permanently:hover, | 900 | #media-items a.delete-permanently:hover, |
| 902 | #nav-menu-footer .menu-delete:hover, | 901 | #nav-menu-footer .menu-delete:hover, |
| 903 | #delete-link a.delete:hover, | 902 | #delete-link a.delete:hover, |
| 904 | a#remove-post-thumbnail:hover { | 903 | a#remove-post-thumbnail:hover, |
| 904 | .privacy_requests .remove-personal-data .remove-personal-data-handle:hover { | ||
| 905 | color: #b32d2e; | 905 | color: #b32d2e; |
| 906 | border: none; | 906 | border: none; |
| 907 | } | 907 | } |
| ... | @@ -957,7 +957,7 @@ a#remove-post-thumbnail:hover { | ... | @@ -957,7 +957,7 @@ a#remove-post-thumbnail:hover { |
| 957 | } | 957 | } |
| 958 | 958 | ||
| 959 | #minor-publishing-actions { | 959 | #minor-publishing-actions { |
| 960 | padding: 10px 10px 0 10px; | 960 | padding: 10px 10px 0; |
| 961 | text-align: right; | 961 | text-align: right; |
| 962 | } | 962 | } |
| 963 | 963 | ||
| ... | @@ -1232,7 +1232,7 @@ th.action-links { | ... | @@ -1232,7 +1232,7 @@ th.action-links { |
| 1232 | 1232 | ||
| 1233 | .filter-group .filter-group-feature label { | 1233 | .filter-group .filter-group-feature label { |
| 1234 | display: block; | 1234 | display: block; |
| 1235 | margin: 14px 0px 14px 23px; | 1235 | margin: 14px 0 14px 23px; |
| 1236 | } | 1236 | } |
| 1237 | 1237 | ||
| 1238 | .filter-drawer .buttons { | 1238 | .filter-drawer .buttons { |
| ... | @@ -1609,7 +1609,7 @@ form.upgrade { | ... | @@ -1609,7 +1609,7 @@ form.upgrade { |
| 1609 | form.upgrade .hint { | 1609 | form.upgrade .hint { |
| 1610 | font-style: italic; | 1610 | font-style: italic; |
| 1611 | font-size: 85%; | 1611 | font-size: 85%; |
| 1612 | margin: -0.5em 0 2em 0; | 1612 | margin: -0.5em 0 2em; |
| 1613 | } | 1613 | } |
| 1614 | 1614 | ||
| 1615 | .update-php .spinner { | 1615 | .update-php .spinner { |
| ... | @@ -1707,7 +1707,7 @@ p.auto-update-status { | ... | @@ -1707,7 +1707,7 @@ p.auto-update-status { |
| 1707 | /* screen options and help tabs revert */ | 1707 | /* screen options and help tabs revert */ |
| 1708 | #screen-meta { | 1708 | #screen-meta { |
| 1709 | display: none; | 1709 | display: none; |
| 1710 | margin: 0 20px -1px 0px; | 1710 | margin: 0 20px -1px 0; |
| 1711 | position: relative; | 1711 | position: relative; |
| 1712 | background-color: #fff; | 1712 | background-color: #fff; |
| 1713 | border: 1px solid #c3c4c7; | 1713 | border: 1px solid #c3c4c7; |
| ... | @@ -3143,7 +3143,7 @@ img { | ... | @@ -3143,7 +3143,7 @@ img { |
| 3143 | width: 300px; | 3143 | width: 300px; |
| 3144 | } | 3144 | } |
| 3145 | 3145 | ||
| 3146 | /* Theme/Plugin Editor */ | 3146 | /* Theme/Plugin file editor */ |
| 3147 | .alignleft h2 { | 3147 | .alignleft h2 { |
| 3148 | margin: 0; | 3148 | margin: 0; |
| 3149 | } | 3149 | } |
| ... | @@ -3196,7 +3196,7 @@ img { | ... | @@ -3196,7 +3196,7 @@ img { |
| 3196 | } | 3196 | } |
| 3197 | 3197 | ||
| 3198 | /* | 3198 | /* |
| 3199 | * Styles for Theme and Plugin editors. | 3199 | * Styles for Theme and Plugin file editors. |
| 3200 | */ | 3200 | */ |
| 3201 | 3201 | ||
| 3202 | /* Hide collapsed items. */ | 3202 | /* Hide collapsed items. */ |
| ... | @@ -3285,7 +3285,7 @@ img { | ... | @@ -3285,7 +3285,7 @@ img { |
| 3285 | .tree-folder > .current-file::before { | 3285 | .tree-folder > .current-file::before { |
| 3286 | left: 4px; | 3286 | left: 4px; |
| 3287 | height: 15px; | 3287 | height: 15px; |
| 3288 | width: 0px; | 3288 | width: 0; |
| 3289 | border-left: none; | 3289 | border-left: none; |
| 3290 | top: 3px; | 3290 | top: 3px; |
| 3291 | } | 3291 | } |
| ... | @@ -3380,7 +3380,7 @@ img { | ... | @@ -3380,7 +3380,7 @@ img { |
| 3380 | } | 3380 | } |
| 3381 | 3381 | ||
| 3382 | #templateside li.howto { | 3382 | #templateside li.howto { |
| 3383 | padding: 6px 12px 12px 12px; | 3383 | padding: 6px 12px 12px; |
| 3384 | } | 3384 | } |
| 3385 | 3385 | ||
| 3386 | .theme-editor-php .highlight { | 3386 | .theme-editor-php .highlight { |
| ... | @@ -3432,7 +3432,7 @@ img { | ... | @@ -3432,7 +3432,7 @@ img { |
| 3432 | } | 3432 | } |
| 3433 | 3433 | ||
| 3434 | .widget-top .widget-action .toggle-indicator:before { | 3434 | .widget-top .widget-action .toggle-indicator:before { |
| 3435 | padding: 1px 2px 1px 0px; | 3435 | padding: 1px 2px 1px 0; |
| 3436 | border-radius: 50%; | 3436 | border-radius: 50%; |
| 3437 | } | 3437 | } |
| 3438 | 3438 | ||
| ... | @@ -3827,7 +3827,7 @@ img { | ... | @@ -3827,7 +3827,7 @@ img { |
| 3827 | .wrap div.updated, | 3827 | .wrap div.updated, |
| 3828 | .wrap div.error, | 3828 | .wrap div.error, |
| 3829 | .media-upload-form div.error { | 3829 | .media-upload-form div.error { |
| 3830 | margin: 20px 0 10px 0; | 3830 | margin: 20px 0 10px; |
| 3831 | padding: 5px 10px; | 3831 | padding: 5px 10px; |
| 3832 | font-size: 14px; | 3832 | font-size: 14px; |
| 3833 | line-height: 175%; | 3833 | line-height: 175%; |
| ... | @@ -3937,7 +3937,7 @@ img { | ... | @@ -3937,7 +3937,7 @@ img { |
| 3937 | left: -8px; | 3937 | left: -8px; |
| 3938 | } | 3938 | } |
| 3939 | .tree-folder > li::before { | 3939 | .tree-folder > li::before { |
| 3940 | top: 0px; | 3940 | top: 0; |
| 3941 | height: 13px; | 3941 | height: 13px; |
| 3942 | } | 3942 | } |
| 3943 | .tree-folder > .current-file::before { | 3943 | .tree-folder > .current-file::before { | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -106,6 +106,12 @@ body:not(.ready) #customize-save-button-wrapper .save { | ... | @@ -106,6 +106,12 @@ body:not(.ready) #customize-save-button-wrapper .save { |
| 106 | height: 100%; | 106 | height: 100%; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | @media (prefers-reduced-motion: reduce) { | ||
| 110 | #customize-sidebar-outer-content { | ||
| 111 | transition: none; | ||
| 112 | } | ||
| 113 | } | ||
| 114 | |||
| 109 | #customize-theme-controls .control-section-outer { | 115 | #customize-theme-controls .control-section-outer { |
| 110 | display: none !important; | 116 | display: none !important; |
| 111 | } | 117 | } |
| ... | @@ -124,6 +130,12 @@ body:not(.ready) #customize-save-button-wrapper .save { | ... | @@ -124,6 +130,12 @@ body:not(.ready) #customize-save-button-wrapper .save { |
| 124 | transition: right .18s; | 130 | transition: right .18s; |
| 125 | } | 131 | } |
| 126 | 132 | ||
| 133 | @media (prefers-reduced-motion: reduce) { | ||
| 134 | .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { | ||
| 135 | transition: none; | ||
| 136 | } | ||
| 137 | } | ||
| 138 | |||
| 127 | .customize-outer-pane-parent { | 139 | .customize-outer-pane-parent { |
| 128 | margin: 0; | 140 | margin: 0; |
| 129 | } | 141 | } |
| ... | @@ -538,6 +550,13 @@ body.trashing #publish-settings { | ... | @@ -538,6 +550,13 @@ body.trashing #publish-settings { |
| 538 | .15s border-color ease-in-out; | 550 | .15s border-color ease-in-out; |
| 539 | } | 551 | } |
| 540 | 552 | ||
| 553 | @media (prefers-reduced-motion: reduce) { | ||
| 554 | #customize-theme-controls .accordion-section-title, | ||
| 555 | #customize-outer-theme-controls .accordion-section-title { | ||
| 556 | transition: none; | ||
| 557 | } | ||
| 558 | } | ||
| 559 | |||
| 541 | #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { | 560 | #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { |
| 542 | color: #50575e; | 561 | color: #50575e; |
| 543 | background-color: #fff; | 562 | background-color: #fff; |
| ... | @@ -636,6 +655,14 @@ body.trashing #publish-settings { | ... | @@ -636,6 +655,14 @@ body.trashing #publish-settings { |
| 636 | transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ | 655 | transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ |
| 637 | } | 656 | } |
| 638 | 657 | ||
| 658 | @media (prefers-reduced-motion: reduce) { | ||
| 659 | #customize-info, | ||
| 660 | #customize-theme-controls .customize-pane-parent, | ||
| 661 | #customize-theme-controls .customize-pane-child { | ||
| 662 | transition: none; | ||
| 663 | } | ||
| 664 | } | ||
| 665 | |||
| 639 | #customize-theme-controls .customize-pane-child.skip-transition { | 666 | #customize-theme-controls .customize-pane-child.skip-transition { |
| 640 | transition: none; | 667 | transition: none; |
| 641 | } | 668 | } |
| ... | @@ -717,7 +744,7 @@ body.trashing #publish-settings { | ... | @@ -717,7 +744,7 @@ body.trashing #publish-settings { |
| 717 | } | 744 | } |
| 718 | 745 | ||
| 719 | .customize-section-title { | 746 | .customize-section-title { |
| 720 | margin: -12px -12px 0 -12px; | 747 | margin: -12px -12px 0; |
| 721 | border-bottom: 1px solid #dcdcde; | 748 | border-bottom: 1px solid #dcdcde; |
| 722 | background: #fff; | 749 | background: #fff; |
| 723 | } | 750 | } |
| ... | @@ -740,11 +767,11 @@ div.customize-section-description p:last-child { | ... | @@ -740,11 +767,11 @@ div.customize-section-description p:last-child { |
| 740 | 767 | ||
| 741 | #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { | 768 | #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { |
| 742 | border-bottom: 1px solid #dcdcde; | 769 | border-bottom: 1px solid #dcdcde; |
| 743 | padding: 12px 12px 12px 12px; | 770 | padding: 12px; |
| 744 | } | 771 | } |
| 745 | 772 | ||
| 746 | .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { | 773 | .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { |
| 747 | padding: 12px 12px 13px 12px; | 774 | padding: 12px 12px 13px; |
| 748 | } | 775 | } |
| 749 | 776 | ||
| 750 | .customize-section-title h3, | 777 | .customize-section-title h3, |
| ... | @@ -923,7 +950,8 @@ p.customize-section-description { | ... | @@ -923,7 +950,8 @@ p.customize-section-description { |
| 923 | .customize-control input[type="number"], | 950 | .customize-control input[type="number"], |
| 924 | .customize-control input[type="search"], | 951 | .customize-control input[type="search"], |
| 925 | .customize-control input[type="tel"], | 952 | .customize-control input[type="tel"], |
| 926 | .customize-control input[type="url"] { | 953 | .customize-control input[type="url"], |
| 954 | .customize-control input[type="range"] { | ||
| 927 | width: 100%; | 955 | width: 100%; |
| 928 | margin: 0; | 956 | margin: 0; |
| 929 | } | 957 | } |
| ... | @@ -1114,7 +1142,7 @@ p.customize-section-description { | ... | @@ -1114,7 +1142,7 @@ p.customize-section-description { |
| 1114 | */ | 1142 | */ |
| 1115 | 1143 | ||
| 1116 | #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ | 1144 | #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ |
| 1117 | margin: 4px 0 8px 0; | 1145 | margin: 4px 0 8px; |
| 1118 | padding: 0; | 1146 | padding: 0; |
| 1119 | cursor: default; | 1147 | cursor: default; |
| 1120 | } | 1148 | } |
| ... | @@ -1127,7 +1155,7 @@ p.customize-section-description { | ... | @@ -1127,7 +1155,7 @@ p.customize-section-description { |
| 1127 | 1155 | ||
| 1128 | #customize-controls .customize-control-notifications-container li.notice { | 1156 | #customize-controls .customize-control-notifications-container li.notice { |
| 1129 | list-style: none; | 1157 | list-style: none; |
| 1130 | margin: 0 0 6px 0; | 1158 | margin: 0 0 6px; |
| 1131 | padding: 9px 14px; | 1159 | padding: 9px 14px; |
| 1132 | overflow: hidden; | 1160 | overflow: hidden; |
| 1133 | } | 1161 | } |
| ... | @@ -1429,7 +1457,7 @@ p.customize-section-description { | ... | @@ -1429,7 +1457,7 @@ p.customize-section-description { |
| 1429 | } | 1457 | } |
| 1430 | 1458 | ||
| 1431 | .customize-control-header .header-view:last-child { | 1459 | .customize-control-header .header-view:last-child { |
| 1432 | margin-bottom: 0px; | 1460 | margin-bottom: 0; |
| 1433 | } | 1461 | } |
| 1434 | 1462 | ||
| 1435 | /* Convoluted, but 'outline' support isn't good enough yet */ | 1463 | /* Convoluted, but 'outline' support isn't good enough yet */ |
| ... | @@ -1665,7 +1693,7 @@ p.customize-section-description { | ... | @@ -1665,7 +1693,7 @@ p.customize-section-description { |
| 1665 | border-bottom: 1px solid #dcdcde; | 1693 | border-bottom: 1px solid #dcdcde; |
| 1666 | border-right: none; | 1694 | border-right: none; |
| 1667 | border-left: none; | 1695 | border-left: none; |
| 1668 | margin: 0 0 15px 0; | 1696 | margin: 0 0 15px; |
| 1669 | padding-left: 100px; /* Space for the button */ | 1697 | padding-left: 100px; /* Space for the button */ |
| 1670 | } | 1698 | } |
| 1671 | 1699 | ||
| ... | @@ -1724,6 +1752,12 @@ p.customize-section-description { | ... | @@ -1724,6 +1752,12 @@ p.customize-section-description { |
| 1724 | z-index: 20; | 1752 | z-index: 20; |
| 1725 | } | 1753 | } |
| 1726 | 1754 | ||
| 1755 | @media (prefers-reduced-motion: reduce) { | ||
| 1756 | .control-panel-themes .customize-themes-full-container { | ||
| 1757 | transition: none; | ||
| 1758 | } | ||
| 1759 | } | ||
| 1760 | |||
| 1727 | @media screen and (min-width: 1670px) { | 1761 | @media screen and (min-width: 1670px) { |
| 1728 | .control-panel-themes .customize-themes-full-container { | 1762 | .control-panel-themes .customize-themes-full-container { |
| 1729 | width: 82%; | 1763 | width: 82%; |
| ... | @@ -1861,7 +1895,7 @@ p.customize-section-description { | ... | @@ -1861,7 +1895,7 @@ p.customize-section-description { |
| 1861 | } | 1895 | } |
| 1862 | 1896 | ||
| 1863 | .control-panel-themes .customize-themes-notifications .notice { | 1897 | .control-panel-themes .customize-themes-notifications .notice { |
| 1864 | margin: 0 0 25px 0; | 1898 | margin: 0 0 25px; |
| 1865 | } | 1899 | } |
| 1866 | 1900 | ||
| 1867 | .customize-themes-full-container .customize-themes-section { | 1901 | .customize-themes-full-container .customize-themes-section { |
| ... | @@ -1875,7 +1909,7 @@ p.customize-section-description { | ... | @@ -1875,7 +1909,7 @@ p.customize-section-description { |
| 1875 | 1909 | ||
| 1876 | .control-section .customize-section-text-before { | 1910 | .control-section .customize-section-text-before { |
| 1877 | padding: 0 15px 8px 0; | 1911 | padding: 0 15px 8px 0; |
| 1878 | margin: 15px 0 0 0; | 1912 | margin: 15px 0 0; |
| 1879 | line-height: 16px; | 1913 | line-height: 16px; |
| 1880 | border-bottom: 1px solid #dcdcde; | 1914 | border-bottom: 1px solid #dcdcde; |
| 1881 | color: #50575e; | 1915 | color: #50575e; |
| ... | @@ -2096,7 +2130,7 @@ p.customize-section-description { | ... | @@ -2096,7 +2130,7 @@ p.customize-section-description { |
| 2096 | position: relative; | 2130 | position: relative; |
| 2097 | right: 0; | 2131 | right: 0; |
| 2098 | width: 100%; | 2132 | width: 100%; |
| 2099 | margin: 0 0 25px 0; | 2133 | margin: 0 0 25px; |
| 2100 | } | 2134 | } |
| 2101 | .filter-drawer { | 2135 | .filter-drawer { |
| 2102 | top: 46px; | 2136 | top: 46px; |
| ... | @@ -2206,7 +2240,7 @@ p.customize-section-description { | ... | @@ -2206,7 +2240,7 @@ p.customize-section-description { |
| 2206 | width: 26px; | 2240 | width: 26px; |
| 2207 | display: block; | 2241 | display: block; |
| 2208 | line-height: 2.3; | 2242 | line-height: 2.3; |
| 2209 | padding: 0 8px 0 8px; | 2243 | padding: 0 8px; |
| 2210 | border-left: 1px solid #dcdcde; | 2244 | border-left: 1px solid #dcdcde; |
| 2211 | } | 2245 | } |
| 2212 | 2246 | ||
| ... | @@ -2367,7 +2401,7 @@ body.cheatin h1 { | ... | @@ -2367,7 +2401,7 @@ body.cheatin h1 { |
| 2367 | color: #50575e; | 2401 | color: #50575e; |
| 2368 | font-size: 24px; | 2402 | font-size: 24px; |
| 2369 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | 2403 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 2370 | margin: 30px 0 0 0; | 2404 | margin: 30px 0 0; |
| 2371 | padding: 0 0 7px; | 2405 | padding: 0 0 7px; |
| 2372 | } | 2406 | } |
| 2373 | 2407 | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -105,6 +105,12 @@ body:not(.ready) #customize-save-button-wrapper .save { | ... | @@ -105,6 +105,12 @@ body:not(.ready) #customize-save-button-wrapper .save { |
| 105 | height: 100%; | 105 | height: 100%; |
| 106 | } | 106 | } |
| 107 | 107 | ||
| 108 | @media (prefers-reduced-motion: reduce) { | ||
| 109 | #customize-sidebar-outer-content { | ||
| 110 | transition: none; | ||
| 111 | } | ||
| 112 | } | ||
| 113 | |||
| 108 | #customize-theme-controls .control-section-outer { | 114 | #customize-theme-controls .control-section-outer { |
| 109 | display: none !important; | 115 | display: none !important; |
| 110 | } | 116 | } |
| ... | @@ -123,6 +129,12 @@ body:not(.ready) #customize-save-button-wrapper .save { | ... | @@ -123,6 +129,12 @@ body:not(.ready) #customize-save-button-wrapper .save { |
| 123 | transition: left .18s; | 129 | transition: left .18s; |
| 124 | } | 130 | } |
| 125 | 131 | ||
| 132 | @media (prefers-reduced-motion: reduce) { | ||
| 133 | .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { | ||
| 134 | transition: none; | ||
| 135 | } | ||
| 136 | } | ||
| 137 | |||
| 126 | .customize-outer-pane-parent { | 138 | .customize-outer-pane-parent { |
| 127 | margin: 0; | 139 | margin: 0; |
| 128 | } | 140 | } |
| ... | @@ -537,6 +549,13 @@ body.trashing #publish-settings { | ... | @@ -537,6 +549,13 @@ body.trashing #publish-settings { |
| 537 | .15s border-color ease-in-out; | 549 | .15s border-color ease-in-out; |
| 538 | } | 550 | } |
| 539 | 551 | ||
| 552 | @media (prefers-reduced-motion: reduce) { | ||
| 553 | #customize-theme-controls .accordion-section-title, | ||
| 554 | #customize-outer-theme-controls .accordion-section-title { | ||
| 555 | transition: none; | ||
| 556 | } | ||
| 557 | } | ||
| 558 | |||
| 540 | #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { | 559 | #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { |
| 541 | color: #50575e; | 560 | color: #50575e; |
| 542 | background-color: #fff; | 561 | background-color: #fff; |
| ... | @@ -635,6 +654,14 @@ body.trashing #publish-settings { | ... | @@ -635,6 +654,14 @@ body.trashing #publish-settings { |
| 635 | transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ | 654 | transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ |
| 636 | } | 655 | } |
| 637 | 656 | ||
| 657 | @media (prefers-reduced-motion: reduce) { | ||
| 658 | #customize-info, | ||
| 659 | #customize-theme-controls .customize-pane-parent, | ||
| 660 | #customize-theme-controls .customize-pane-child { | ||
| 661 | transition: none; | ||
| 662 | } | ||
| 663 | } | ||
| 664 | |||
| 638 | #customize-theme-controls .customize-pane-child.skip-transition { | 665 | #customize-theme-controls .customize-pane-child.skip-transition { |
| 639 | transition: none; | 666 | transition: none; |
| 640 | } | 667 | } |
| ... | @@ -716,7 +743,7 @@ body.trashing #publish-settings { | ... | @@ -716,7 +743,7 @@ body.trashing #publish-settings { |
| 716 | } | 743 | } |
| 717 | 744 | ||
| 718 | .customize-section-title { | 745 | .customize-section-title { |
| 719 | margin: -12px -12px 0 -12px; | 746 | margin: -12px -12px 0; |
| 720 | border-bottom: 1px solid #dcdcde; | 747 | border-bottom: 1px solid #dcdcde; |
| 721 | background: #fff; | 748 | background: #fff; |
| 722 | } | 749 | } |
| ... | @@ -739,11 +766,11 @@ div.customize-section-description p:last-child { | ... | @@ -739,11 +766,11 @@ div.customize-section-description p:last-child { |
| 739 | 766 | ||
| 740 | #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { | 767 | #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { |
| 741 | border-bottom: 1px solid #dcdcde; | 768 | border-bottom: 1px solid #dcdcde; |
| 742 | padding: 12px 12px 12px 12px; | 769 | padding: 12px; |
| 743 | } | 770 | } |
| 744 | 771 | ||
| 745 | .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { | 772 | .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { |
| 746 | padding: 12px 12px 13px 12px; | 773 | padding: 12px 12px 13px; |
| 747 | } | 774 | } |
| 748 | 775 | ||
| 749 | .customize-section-title h3, | 776 | .customize-section-title h3, |
| ... | @@ -922,7 +949,8 @@ p.customize-section-description { | ... | @@ -922,7 +949,8 @@ p.customize-section-description { |
| 922 | .customize-control input[type="number"], | 949 | .customize-control input[type="number"], |
| 923 | .customize-control input[type="search"], | 950 | .customize-control input[type="search"], |
| 924 | .customize-control input[type="tel"], | 951 | .customize-control input[type="tel"], |
| 925 | .customize-control input[type="url"] { | 952 | .customize-control input[type="url"], |
| 953 | .customize-control input[type="range"] { | ||
| 926 | width: 100%; | 954 | width: 100%; |
| 927 | margin: 0; | 955 | margin: 0; |
| 928 | } | 956 | } |
| ... | @@ -1113,7 +1141,7 @@ p.customize-section-description { | ... | @@ -1113,7 +1141,7 @@ p.customize-section-description { |
| 1113 | */ | 1141 | */ |
| 1114 | 1142 | ||
| 1115 | #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ | 1143 | #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ |
| 1116 | margin: 4px 0 8px 0; | 1144 | margin: 4px 0 8px; |
| 1117 | padding: 0; | 1145 | padding: 0; |
| 1118 | cursor: default; | 1146 | cursor: default; |
| 1119 | } | 1147 | } |
| ... | @@ -1126,7 +1154,7 @@ p.customize-section-description { | ... | @@ -1126,7 +1154,7 @@ p.customize-section-description { |
| 1126 | 1154 | ||
| 1127 | #customize-controls .customize-control-notifications-container li.notice { | 1155 | #customize-controls .customize-control-notifications-container li.notice { |
| 1128 | list-style: none; | 1156 | list-style: none; |
| 1129 | margin: 0 0 6px 0; | 1157 | margin: 0 0 6px; |
| 1130 | padding: 9px 14px; | 1158 | padding: 9px 14px; |
| 1131 | overflow: hidden; | 1159 | overflow: hidden; |
| 1132 | } | 1160 | } |
| ... | @@ -1428,7 +1456,7 @@ p.customize-section-description { | ... | @@ -1428,7 +1456,7 @@ p.customize-section-description { |
| 1428 | } | 1456 | } |
| 1429 | 1457 | ||
| 1430 | .customize-control-header .header-view:last-child { | 1458 | .customize-control-header .header-view:last-child { |
| 1431 | margin-bottom: 0px; | 1459 | margin-bottom: 0; |
| 1432 | } | 1460 | } |
| 1433 | 1461 | ||
| 1434 | /* Convoluted, but 'outline' support isn't good enough yet */ | 1462 | /* Convoluted, but 'outline' support isn't good enough yet */ |
| ... | @@ -1664,7 +1692,7 @@ p.customize-section-description { | ... | @@ -1664,7 +1692,7 @@ p.customize-section-description { |
| 1664 | border-bottom: 1px solid #dcdcde; | 1692 | border-bottom: 1px solid #dcdcde; |
| 1665 | border-left: none; | 1693 | border-left: none; |
| 1666 | border-right: none; | 1694 | border-right: none; |
| 1667 | margin: 0 0 15px 0; | 1695 | margin: 0 0 15px; |
| 1668 | padding-right: 100px; /* Space for the button */ | 1696 | padding-right: 100px; /* Space for the button */ |
| 1669 | } | 1697 | } |
| 1670 | 1698 | ||
| ... | @@ -1723,6 +1751,12 @@ p.customize-section-description { | ... | @@ -1723,6 +1751,12 @@ p.customize-section-description { |
| 1723 | z-index: 20; | 1751 | z-index: 20; |
| 1724 | } | 1752 | } |
| 1725 | 1753 | ||
| 1754 | @media (prefers-reduced-motion: reduce) { | ||
| 1755 | .control-panel-themes .customize-themes-full-container { | ||
| 1756 | transition: none; | ||
| 1757 | } | ||
| 1758 | } | ||
| 1759 | |||
| 1726 | @media screen and (min-width: 1670px) { | 1760 | @media screen and (min-width: 1670px) { |
| 1727 | .control-panel-themes .customize-themes-full-container { | 1761 | .control-panel-themes .customize-themes-full-container { |
| 1728 | width: 82%; | 1762 | width: 82%; |
| ... | @@ -1860,7 +1894,7 @@ p.customize-section-description { | ... | @@ -1860,7 +1894,7 @@ p.customize-section-description { |
| 1860 | } | 1894 | } |
| 1861 | 1895 | ||
| 1862 | .control-panel-themes .customize-themes-notifications .notice { | 1896 | .control-panel-themes .customize-themes-notifications .notice { |
| 1863 | margin: 0 0 25px 0; | 1897 | margin: 0 0 25px; |
| 1864 | } | 1898 | } |
| 1865 | 1899 | ||
| 1866 | .customize-themes-full-container .customize-themes-section { | 1900 | .customize-themes-full-container .customize-themes-section { |
| ... | @@ -1874,7 +1908,7 @@ p.customize-section-description { | ... | @@ -1874,7 +1908,7 @@ p.customize-section-description { |
| 1874 | 1908 | ||
| 1875 | .control-section .customize-section-text-before { | 1909 | .control-section .customize-section-text-before { |
| 1876 | padding: 0 0 8px 15px; | 1910 | padding: 0 0 8px 15px; |
| 1877 | margin: 15px 0 0 0; | 1911 | margin: 15px 0 0; |
| 1878 | line-height: 16px; | 1912 | line-height: 16px; |
| 1879 | border-bottom: 1px solid #dcdcde; | 1913 | border-bottom: 1px solid #dcdcde; |
| 1880 | color: #50575e; | 1914 | color: #50575e; |
| ... | @@ -2095,7 +2129,7 @@ p.customize-section-description { | ... | @@ -2095,7 +2129,7 @@ p.customize-section-description { |
| 2095 | position: relative; | 2129 | position: relative; |
| 2096 | left: 0; | 2130 | left: 0; |
| 2097 | width: 100%; | 2131 | width: 100%; |
| 2098 | margin: 0 0 25px 0; | 2132 | margin: 0 0 25px; |
| 2099 | } | 2133 | } |
| 2100 | .filter-drawer { | 2134 | .filter-drawer { |
| 2101 | top: 46px; | 2135 | top: 46px; |
| ... | @@ -2205,7 +2239,7 @@ p.customize-section-description { | ... | @@ -2205,7 +2239,7 @@ p.customize-section-description { |
| 2205 | width: 26px; | 2239 | width: 26px; |
| 2206 | display: block; | 2240 | display: block; |
| 2207 | line-height: 2.3; | 2241 | line-height: 2.3; |
| 2208 | padding: 0 8px 0 8px; | 2242 | padding: 0 8px; |
| 2209 | border-right: 1px solid #dcdcde; | 2243 | border-right: 1px solid #dcdcde; |
| 2210 | } | 2244 | } |
| 2211 | 2245 | ||
| ... | @@ -2366,7 +2400,7 @@ body.cheatin h1 { | ... | @@ -2366,7 +2400,7 @@ body.cheatin h1 { |
| 2366 | color: #50575e; | 2400 | color: #50575e; |
| 2367 | font-size: 24px; | 2401 | font-size: 24px; |
| 2368 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | 2402 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 2369 | margin: 30px 0 0 0; | 2403 | margin: 30px 0 0; |
| 2370 | padding: 0 0 7px; | 2404 | padding: 0 0 7px; |
| 2371 | } | 2405 | } |
| 2372 | 2406 | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
| 12 | #customize-theme-controls .customize-section-title-nav_menus-heading, | 12 | #customize-theme-controls .customize-section-title-nav_menus-heading, |
| 13 | #customize-theme-controls .customize-section-title-menu_locations-heading, | 13 | #customize-theme-controls .customize-section-title-menu_locations-heading, |
| 14 | #customize-theme-controls .customize-section-title-menu_locations-description { | 14 | #customize-theme-controls .customize-section-title-menu_locations-description { |
| 15 | padding: 0 12px 0 12px; | 15 | padding: 0 12px; |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { | 18 | #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { |
| ... | @@ -101,7 +101,7 @@ | ... | @@ -101,7 +101,7 @@ |
| 101 | .wp-customizer .menu-item-settings .description-thin { | 101 | .wp-customizer .menu-item-settings .description-thin { |
| 102 | width: 100%; | 102 | width: 100%; |
| 103 | height: auto; | 103 | height: auto; |
| 104 | margin: 0 0 8px 0; | 104 | margin: 0 0 8px; |
| 105 | } | 105 | } |
| 106 | 106 | ||
| 107 | .wp-customizer .menu-item-settings input[type="text"] { | 107 | .wp-customizer .menu-item-settings input[type="text"] { |
| ... | @@ -186,7 +186,7 @@ | ... | @@ -186,7 +186,7 @@ |
| 186 | } | 186 | } |
| 187 | 187 | ||
| 188 | .wp-customizer .menu-settings dl { | 188 | .wp-customizer .menu-settings dl { |
| 189 | margin: 12px 0 0 0; | 189 | margin: 12px 0 0; |
| 190 | padding: 0; | 190 | padding: 0; |
| 191 | } | 191 | } |
| 192 | 192 | ||
| ... | @@ -323,7 +323,7 @@ | ... | @@ -323,7 +323,7 @@ |
| 323 | #available-menu-items .accordion-section-title .toggle-indicator:before { | 323 | #available-menu-items .accordion-section-title .toggle-indicator:before { |
| 324 | content: "\f140"; | 324 | content: "\f140"; |
| 325 | display: block; | 325 | display: block; |
| 326 | padding: 1px 0px 1px 2px; | 326 | padding: 1px 0 1px 2px; |
| 327 | speak: never; | 327 | speak: never; |
| 328 | border-radius: 50%; | 328 | border-radius: 50%; |
| 329 | color: #787c82; | 329 | color: #787c82; |
| ... | @@ -582,8 +582,8 @@ | ... | @@ -582,8 +582,8 @@ |
| 582 | } | 582 | } |
| 583 | 583 | ||
| 584 | #available-menu-items .accordion-section-content .available-menu-items-list { | 584 | #available-menu-items .accordion-section-content .available-menu-items-list { |
| 585 | margin: 0 0 45px 0; | 585 | margin: 0 0 45px; |
| 586 | padding: 1px 15px 15px 15px; | 586 | padding: 1px 15px 15px; |
| 587 | } | 587 | } |
| 588 | 588 | ||
| 589 | #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ | 589 | #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ |
| ... | @@ -591,7 +591,7 @@ | ... | @@ -591,7 +591,7 @@ |
| 591 | } | 591 | } |
| 592 | 592 | ||
| 593 | #new-custom-menu-item .accordion-section-content { | 593 | #new-custom-menu-item .accordion-section-content { |
| 594 | padding: 0 15px 15px 15px; | 594 | padding: 0 15px 15px; |
| 595 | } | 595 | } |
| 596 | 596 | ||
| 597 | #available-menu-items .menu-item-tpl { | 597 | #available-menu-items .menu-item-tpl { |
| ... | @@ -691,7 +691,7 @@ | ... | @@ -691,7 +691,7 @@ |
| 691 | position: absolute; | 691 | position: absolute; |
| 692 | right: 0; | 692 | right: 0; |
| 693 | top: 60px; /* below title div / search input */ | 693 | top: 60px; /* below title div / search input */ |
| 694 | bottom: 0px; /* 100% height that still triggers lazy load */ | 694 | bottom: 0; /* 100% height that still triggers lazy load */ |
| 695 | max-height: none; | 695 | max-height: none; |
| 696 | width: 100%; | 696 | width: 100%; |
| 697 | padding: 1px 15px 15px; | 697 | padding: 1px 15px 15px; |
| ... | @@ -796,7 +796,7 @@ body.adding-menu-items #customize-preview iframe { | ... | @@ -796,7 +796,7 @@ body.adding-menu-items #customize-preview iframe { |
| 796 | 796 | ||
| 797 | #create-new-menu-submit { | 797 | #create-new-menu-submit { |
| 798 | float: left; | 798 | float: left; |
| 799 | margin: 0 0 12px 0; | 799 | margin: 0 0 12px; |
| 800 | } | 800 | } |
| 801 | 801 | ||
| 802 | .menu-delete-item { | 802 | .menu-delete-item { |
| ... | @@ -806,7 +806,7 @@ body.adding-menu-items #customize-preview iframe { | ... | @@ -806,7 +806,7 @@ body.adding-menu-items #customize-preview iframe { |
| 806 | } | 806 | } |
| 807 | 807 | ||
| 808 | .assigned-menu-locations-title p { | 808 | .assigned-menu-locations-title p { |
| 809 | margin: 0 0 8px 0; | 809 | margin: 0 0 8px; |
| 810 | } | 810 | } |
| 811 | 811 | ||
| 812 | li.assigned-to-menu-location .menu-delete-item { | 812 | li.assigned-to-menu-location .menu-delete-item { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | #customize-theme-controls .customize-section-title-nav_menus-heading, | 11 | #customize-theme-controls .customize-section-title-nav_menus-heading, |
| 12 | #customize-theme-controls .customize-section-title-menu_locations-heading, | 12 | #customize-theme-controls .customize-section-title-menu_locations-heading, |
| 13 | #customize-theme-controls .customize-section-title-menu_locations-description { | 13 | #customize-theme-controls .customize-section-title-menu_locations-description { |
| 14 | padding: 0 12px 0 12px; | 14 | padding: 0 12px; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { | 17 | #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { |
| ... | @@ -100,7 +100,7 @@ | ... | @@ -100,7 +100,7 @@ |
| 100 | .wp-customizer .menu-item-settings .description-thin { | 100 | .wp-customizer .menu-item-settings .description-thin { |
| 101 | width: 100%; | 101 | width: 100%; |
| 102 | height: auto; | 102 | height: auto; |
| 103 | margin: 0 0 8px 0; | 103 | margin: 0 0 8px; |
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | .wp-customizer .menu-item-settings input[type="text"] { | 106 | .wp-customizer .menu-item-settings input[type="text"] { |
| ... | @@ -185,7 +185,7 @@ | ... | @@ -185,7 +185,7 @@ |
| 185 | } | 185 | } |
| 186 | 186 | ||
| 187 | .wp-customizer .menu-settings dl { | 187 | .wp-customizer .menu-settings dl { |
| 188 | margin: 12px 0 0 0; | 188 | margin: 12px 0 0; |
| 189 | padding: 0; | 189 | padding: 0; |
| 190 | } | 190 | } |
| 191 | 191 | ||
| ... | @@ -322,7 +322,7 @@ | ... | @@ -322,7 +322,7 @@ |
| 322 | #available-menu-items .accordion-section-title .toggle-indicator:before { | 322 | #available-menu-items .accordion-section-title .toggle-indicator:before { |
| 323 | content: "\f140"; | 323 | content: "\f140"; |
| 324 | display: block; | 324 | display: block; |
| 325 | padding: 1px 2px 1px 0px; | 325 | padding: 1px 2px 1px 0; |
| 326 | speak: never; | 326 | speak: never; |
| 327 | border-radius: 50%; | 327 | border-radius: 50%; |
| 328 | color: #787c82; | 328 | color: #787c82; |
| ... | @@ -581,8 +581,8 @@ | ... | @@ -581,8 +581,8 @@ |
| 581 | } | 581 | } |
| 582 | 582 | ||
| 583 | #available-menu-items .accordion-section-content .available-menu-items-list { | 583 | #available-menu-items .accordion-section-content .available-menu-items-list { |
| 584 | margin: 0 0 45px 0; | 584 | margin: 0 0 45px; |
| 585 | padding: 1px 15px 15px 15px; | 585 | padding: 1px 15px 15px; |
| 586 | } | 586 | } |
| 587 | 587 | ||
| 588 | #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ | 588 | #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ |
| ... | @@ -590,7 +590,7 @@ | ... | @@ -590,7 +590,7 @@ |
| 590 | } | 590 | } |
| 591 | 591 | ||
| 592 | #new-custom-menu-item .accordion-section-content { | 592 | #new-custom-menu-item .accordion-section-content { |
| 593 | padding: 0 15px 15px 15px; | 593 | padding: 0 15px 15px; |
| 594 | } | 594 | } |
| 595 | 595 | ||
| 596 | #available-menu-items .menu-item-tpl { | 596 | #available-menu-items .menu-item-tpl { |
| ... | @@ -690,7 +690,7 @@ | ... | @@ -690,7 +690,7 @@ |
| 690 | position: absolute; | 690 | position: absolute; |
| 691 | left: 0; | 691 | left: 0; |
| 692 | top: 60px; /* below title div / search input */ | 692 | top: 60px; /* below title div / search input */ |
| 693 | bottom: 0px; /* 100% height that still triggers lazy load */ | 693 | bottom: 0; /* 100% height that still triggers lazy load */ |
| 694 | max-height: none; | 694 | max-height: none; |
| 695 | width: 100%; | 695 | width: 100%; |
| 696 | padding: 1px 15px 15px; | 696 | padding: 1px 15px 15px; |
| ... | @@ -795,7 +795,7 @@ body.adding-menu-items #customize-preview iframe { | ... | @@ -795,7 +795,7 @@ body.adding-menu-items #customize-preview iframe { |
| 795 | 795 | ||
| 796 | #create-new-menu-submit { | 796 | #create-new-menu-submit { |
| 797 | float: right; | 797 | float: right; |
| 798 | margin: 0 0 12px 0; | 798 | margin: 0 0 12px; |
| 799 | } | 799 | } |
| 800 | 800 | ||
| 801 | .menu-delete-item { | 801 | .menu-delete-item { |
| ... | @@ -805,7 +805,7 @@ body.adding-menu-items #customize-preview iframe { | ... | @@ -805,7 +805,7 @@ body.adding-menu-items #customize-preview iframe { |
| 805 | } | 805 | } |
| 806 | 806 | ||
| 807 | .assigned-menu-locations-title p { | 807 | .assigned-menu-locations-title p { |
| 808 | margin: 0 0 8px 0; | 808 | margin: 0 0 8px; |
| 809 | } | 809 | } |
| 810 | 810 | ||
| 811 | li.assigned-to-menu-location .menu-delete-item { | 811 | li.assigned-to-menu-location .menu-delete-item { | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
| ... | @@ -147,6 +147,11 @@ body.post-new-php .submitbox .submitdelete { | ... | @@ -147,6 +147,11 @@ body.post-new-php .submitbox .submitdelete { |
| 147 | margin-top: 3px; | 147 | margin-top: 3px; |
| 148 | } | 148 | } |
| 149 | 149 | ||
| 150 | body.post-type-wp_navigation div#minor-publishing, | ||
| 151 | body.post-type-wp_navigation .inline-edit-status { | ||
| 152 | display: none; | ||
| 153 | } | ||
| 154 | |||
| 150 | /* Post Screen */ | 155 | /* Post Screen */ |
| 151 | 156 | ||
| 152 | /* Only highlight drop zones when dragging and only in the 2 columns layout. */ | 157 | /* Only highlight drop zones when dragging and only in the 2 columns layout. */ |
| ... | @@ -451,7 +456,7 @@ form#tags-filter { | ... | @@ -451,7 +456,7 @@ form#tags-filter { |
| 451 | } | 456 | } |
| 452 | 457 | ||
| 453 | .curtime #timestamp { | 458 | .curtime #timestamp { |
| 454 | padding: 2px 0 1px 0; | 459 | padding: 2px 0 1px; |
| 455 | display: inline !important; | 460 | display: inline !important; |
| 456 | height: auto !important; | 461 | height: auto !important; |
| 457 | } | 462 | } |
| ... | @@ -651,7 +656,7 @@ form#tags-filter { | ... | @@ -651,7 +656,7 @@ form#tags-filter { |
| 651 | } | 656 | } |
| 652 | 657 | ||
| 653 | #poststuff .inside { | 658 | #poststuff .inside { |
| 654 | margin: 6px 0 0 0; | 659 | margin: 6px 0 0; |
| 655 | } | 660 | } |
| 656 | 661 | ||
| 657 | .link-php #poststuff .inside, | 662 | .link-php #poststuff .inside, |
| ... | @@ -722,7 +727,7 @@ form#tags-filter { | ... | @@ -722,7 +727,7 @@ form#tags-filter { |
| 722 | font-weight: 600; | 727 | font-weight: 600; |
| 723 | margin: 0 0.8rem 1rem; | 728 | margin: 0 0.8rem 1rem; |
| 724 | font-size: 23px; | 729 | font-size: 23px; |
| 725 | padding: 9px 0 4px 0; | 730 | padding: 9px 0 4px; |
| 726 | line-height: 1.3; | 731 | line-height: 1.3; |
| 727 | } | 732 | } |
| 728 | 733 | ||
| ... | @@ -1364,7 +1369,7 @@ p.description code { | ... | @@ -1364,7 +1369,7 @@ p.description code { |
| 1364 | } | 1369 | } |
| 1365 | 1370 | ||
| 1366 | #poststuff .tagsdiv .howto { | 1371 | #poststuff .tagsdiv .howto { |
| 1367 | margin: 1em 0 6px 0; | 1372 | margin: 1em 0 6px; |
| 1368 | } | 1373 | } |
| 1369 | 1374 | ||
| 1370 | .ajaxtag .newtag { | 1375 | .ajaxtag .newtag { |
| ... | @@ -1773,7 +1778,7 @@ table.links-table { | ... | @@ -1773,7 +1778,7 @@ table.links-table { |
| 1773 | } | 1778 | } |
| 1774 | 1779 | ||
| 1775 | #titlediv #title-prompt-text { | 1780 | #titlediv #title-prompt-text { |
| 1776 | padding: 10px 10px; | 1781 | padding: 10px; |
| 1777 | } | 1782 | } |
| 1778 | 1783 | ||
| 1779 | #poststuff .stuffbox .inside { | 1784 | #poststuff .stuffbox .inside { |
| ... | @@ -1956,7 +1961,7 @@ table.links-table { | ... | @@ -1956,7 +1961,7 @@ table.links-table { |
| 1956 | } | 1961 | } |
| 1957 | 1962 | ||
| 1958 | .misc-pub-section { | 1963 | .misc-pub-section { |
| 1959 | padding: 20px 10px 20px; | 1964 | padding: 20px 10px; |
| 1960 | } | 1965 | } |
| 1961 | 1966 | ||
| 1962 | .misc-pub-section > a { | 1967 | .misc-pub-section > a { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -146,6 +146,11 @@ body.post-new-php .submitbox .submitdelete { | ... | @@ -146,6 +146,11 @@ body.post-new-php .submitbox .submitdelete { |
| 146 | margin-top: 3px; | 146 | margin-top: 3px; |
| 147 | } | 147 | } |
| 148 | 148 | ||
| 149 | body.post-type-wp_navigation div#minor-publishing, | ||
| 150 | body.post-type-wp_navigation .inline-edit-status { | ||
| 151 | display: none; | ||
| 152 | } | ||
| 153 | |||
| 149 | /* Post Screen */ | 154 | /* Post Screen */ |
| 150 | 155 | ||
| 151 | /* Only highlight drop zones when dragging and only in the 2 columns layout. */ | 156 | /* Only highlight drop zones when dragging and only in the 2 columns layout. */ |
| ... | @@ -450,7 +455,7 @@ form#tags-filter { | ... | @@ -450,7 +455,7 @@ form#tags-filter { |
| 450 | } | 455 | } |
| 451 | 456 | ||
| 452 | .curtime #timestamp { | 457 | .curtime #timestamp { |
| 453 | padding: 2px 0 1px 0; | 458 | padding: 2px 0 1px; |
| 454 | display: inline !important; | 459 | display: inline !important; |
| 455 | height: auto !important; | 460 | height: auto !important; |
| 456 | } | 461 | } |
| ... | @@ -650,7 +655,7 @@ form#tags-filter { | ... | @@ -650,7 +655,7 @@ form#tags-filter { |
| 650 | } | 655 | } |
| 651 | 656 | ||
| 652 | #poststuff .inside { | 657 | #poststuff .inside { |
| 653 | margin: 6px 0 0 0; | 658 | margin: 6px 0 0; |
| 654 | } | 659 | } |
| 655 | 660 | ||
| 656 | .link-php #poststuff .inside, | 661 | .link-php #poststuff .inside, |
| ... | @@ -721,7 +726,7 @@ form#tags-filter { | ... | @@ -721,7 +726,7 @@ form#tags-filter { |
| 721 | font-weight: 600; | 726 | font-weight: 600; |
| 722 | margin: 0 0.8rem 1rem; | 727 | margin: 0 0.8rem 1rem; |
| 723 | font-size: 23px; | 728 | font-size: 23px; |
| 724 | padding: 9px 0 4px 0; | 729 | padding: 9px 0 4px; |
| 725 | line-height: 1.3; | 730 | line-height: 1.3; |
| 726 | } | 731 | } |
| 727 | 732 | ||
| ... | @@ -1363,7 +1368,7 @@ p.description code { | ... | @@ -1363,7 +1368,7 @@ p.description code { |
| 1363 | } | 1368 | } |
| 1364 | 1369 | ||
| 1365 | #poststuff .tagsdiv .howto { | 1370 | #poststuff .tagsdiv .howto { |
| 1366 | margin: 1em 0 6px 0; | 1371 | margin: 1em 0 6px; |
| 1367 | } | 1372 | } |
| 1368 | 1373 | ||
| 1369 | .ajaxtag .newtag { | 1374 | .ajaxtag .newtag { |
| ... | @@ -1772,7 +1777,7 @@ table.links-table { | ... | @@ -1772,7 +1777,7 @@ table.links-table { |
| 1772 | } | 1777 | } |
| 1773 | 1778 | ||
| 1774 | #titlediv #title-prompt-text { | 1779 | #titlediv #title-prompt-text { |
| 1775 | padding: 10px 10px; | 1780 | padding: 10px; |
| 1776 | } | 1781 | } |
| 1777 | 1782 | ||
| 1778 | #poststuff .stuffbox .inside { | 1783 | #poststuff .stuffbox .inside { |
| ... | @@ -1955,7 +1960,7 @@ table.links-table { | ... | @@ -1955,7 +1960,7 @@ table.links-table { |
| 1955 | } | 1960 | } |
| 1956 | 1961 | ||
| 1957 | .misc-pub-section { | 1962 | .misc-pub-section { |
| 1958 | padding: 20px 10px 20px; | 1963 | padding: 20px 10px; |
| 1959 | } | 1964 | } |
| 1960 | 1965 | ||
| 1961 | .misc-pub-section > a { | 1966 | .misc-pub-section > a { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -33,7 +33,7 @@ select { | ... | @@ -33,7 +33,7 @@ select { |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | textarea.code { | 35 | textarea.code { |
| 36 | padding: 4px 6px 1px 6px; | 36 | padding: 4px 6px 1px; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | input[type="text"], | 39 | input[type="text"], |
| ... | @@ -1000,8 +1000,8 @@ table.form-table td .updated p { | ... | @@ -1000,8 +1000,8 @@ table.form-table td .updated p { |
| 1000 | 1000 | ||
| 1001 | .pressthis-bookmarklet span { | 1001 | .pressthis-bookmarklet span { |
| 1002 | display: inline-block; | 1002 | display: inline-block; |
| 1003 | margin: 0px 0 0; | 1003 | margin: 0; |
| 1004 | padding: 0px 9px 8px 12px; | 1004 | padding: 0 9px 8px 12px; |
| 1005 | } | 1005 | } |
| 1006 | 1006 | ||
| 1007 | .pressthis-bookmarklet span:before { | 1007 | .pressthis-bookmarklet span:before { |
| ... | @@ -1226,7 +1226,7 @@ table.form-table td .updated p { | ... | @@ -1226,7 +1226,7 @@ table.form-table td .updated p { |
| 1226 | } | 1226 | } |
| 1227 | 1227 | ||
| 1228 | .request-filesystem-credentials-form .notice { | 1228 | .request-filesystem-credentials-form .notice { |
| 1229 | margin: 0 0 20px 0; | 1229 | margin: 0 0 20px; |
| 1230 | clear: both; | 1230 | clear: both; |
| 1231 | } | 1231 | } |
| 1232 | 1232 | ||
| ... | @@ -1237,11 +1237,14 @@ table.form-table td .updated p { | ... | @@ -1237,11 +1237,14 @@ table.form-table td .updated p { |
| 1237 | margin-bottom: 1.3em; | 1237 | margin-bottom: 1.3em; |
| 1238 | } | 1238 | } |
| 1239 | 1239 | ||
| 1240 | .tools-privacy-policy-page input.button, | 1240 | .tools-privacy-policy-page input.button { |
| 1241 | .tools-privacy-policy-page select { | ||
| 1242 | margin: 0 6px 0 1px; | 1241 | margin: 0 6px 0 1px; |
| 1243 | } | 1242 | } |
| 1244 | 1243 | ||
| 1244 | .tools-privacy-policy-page select { | ||
| 1245 | margin: 0 6px 0.5em 1px; | ||
| 1246 | } | ||
| 1247 | |||
| 1245 | .tools-privacy-edit { | 1248 | .tools-privacy-edit { |
| 1246 | margin: 1.5em 0; | 1249 | margin: 1.5em 0; |
| 1247 | } | 1250 | } |
| ... | @@ -1560,13 +1563,13 @@ table.form-table td .updated p { | ... | @@ -1560,13 +1563,13 @@ table.form-table td .updated p { |
| 1560 | } | 1563 | } |
| 1561 | 1564 | ||
| 1562 | .form-table th { | 1565 | .form-table th { |
| 1563 | padding: 10px 0 0 0; | 1566 | padding: 10px 0 0; |
| 1564 | border-bottom: 0; | 1567 | border-bottom: 0; |
| 1565 | } | 1568 | } |
| 1566 | 1569 | ||
| 1567 | .form-table td { | 1570 | .form-table td { |
| 1568 | margin-bottom: 0; | 1571 | margin-bottom: 0; |
| 1569 | padding: 4px 0 6px 0; | 1572 | padding: 4px 0 6px; |
| 1570 | } | 1573 | } |
| 1571 | 1574 | ||
| 1572 | .form-table.permalink-structure td code { | 1575 | .form-table.permalink-structure td code { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -32,7 +32,7 @@ select { | ... | @@ -32,7 +32,7 @@ select { |
| 32 | } | 32 | } |
| 33 | 33 | ||
| 34 | textarea.code { | 34 | textarea.code { |
| 35 | padding: 4px 6px 1px 6px; | 35 | padding: 4px 6px 1px; |
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | input[type="text"], | 38 | input[type="text"], |
| ... | @@ -999,8 +999,8 @@ table.form-table td .updated p { | ... | @@ -999,8 +999,8 @@ table.form-table td .updated p { |
| 999 | 999 | ||
| 1000 | .pressthis-bookmarklet span { | 1000 | .pressthis-bookmarklet span { |
| 1001 | display: inline-block; | 1001 | display: inline-block; |
| 1002 | margin: 0px 0 0; | 1002 | margin: 0; |
| 1003 | padding: 0px 12px 8px 9px; | 1003 | padding: 0 12px 8px 9px; |
| 1004 | } | 1004 | } |
| 1005 | 1005 | ||
| 1006 | .pressthis-bookmarklet span:before { | 1006 | .pressthis-bookmarklet span:before { |
| ... | @@ -1225,7 +1225,7 @@ table.form-table td .updated p { | ... | @@ -1225,7 +1225,7 @@ table.form-table td .updated p { |
| 1225 | } | 1225 | } |
| 1226 | 1226 | ||
| 1227 | .request-filesystem-credentials-form .notice { | 1227 | .request-filesystem-credentials-form .notice { |
| 1228 | margin: 0 0 20px 0; | 1228 | margin: 0 0 20px; |
| 1229 | clear: both; | 1229 | clear: both; |
| 1230 | } | 1230 | } |
| 1231 | 1231 | ||
| ... | @@ -1236,11 +1236,14 @@ table.form-table td .updated p { | ... | @@ -1236,11 +1236,14 @@ table.form-table td .updated p { |
| 1236 | margin-bottom: 1.3em; | 1236 | margin-bottom: 1.3em; |
| 1237 | } | 1237 | } |
| 1238 | 1238 | ||
| 1239 | .tools-privacy-policy-page input.button, | 1239 | .tools-privacy-policy-page input.button { |
| 1240 | .tools-privacy-policy-page select { | ||
| 1241 | margin: 0 1px 0 6px; | 1240 | margin: 0 1px 0 6px; |
| 1242 | } | 1241 | } |
| 1243 | 1242 | ||
| 1243 | .tools-privacy-policy-page select { | ||
| 1244 | margin: 0 1px 0.5em 6px; | ||
| 1245 | } | ||
| 1246 | |||
| 1244 | .tools-privacy-edit { | 1247 | .tools-privacy-edit { |
| 1245 | margin: 1.5em 0; | 1248 | margin: 1.5em 0; |
| 1246 | } | 1249 | } |
| ... | @@ -1559,13 +1562,13 @@ table.form-table td .updated p { | ... | @@ -1559,13 +1562,13 @@ table.form-table td .updated p { |
| 1559 | } | 1562 | } |
| 1560 | 1563 | ||
| 1561 | .form-table th { | 1564 | .form-table th { |
| 1562 | padding: 10px 0 0 0; | 1565 | padding: 10px 0 0; |
| 1563 | border-bottom: 0; | 1566 | border-bottom: 0; |
| 1564 | } | 1567 | } |
| 1565 | 1568 | ||
| 1566 | .form-table td { | 1569 | .form-table td { |
| 1567 | margin-bottom: 0; | 1570 | margin-bottom: 0; |
| 1568 | padding: 4px 0 6px 0; | 1571 | padding: 4px 0 6px; |
| 1569 | } | 1572 | } |
| 1570 | 1573 | ||
| 1571 | .form-table.permalink-structure td code { | 1574 | .form-table.permalink-structure td code { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -10,7 +10,7 @@ body { | ... | @@ -10,7 +10,7 @@ body { |
| 10 | color: #3c434a; | 10 | color: #3c434a; |
| 11 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | 11 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 12 | margin: 140px auto 25px; | 12 | margin: 140px auto 25px; |
| 13 | padding: 20px 20px 10px 20px; | 13 | padding: 20px 20px 10px; |
| 14 | max-width: 700px; | 14 | max-width: 700px; |
| 15 | -webkit-font-smoothing: subpixel-antialiased; | 15 | -webkit-font-smoothing: subpixel-antialiased; |
| 16 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); | 16 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| ... | @@ -79,7 +79,7 @@ label { | ... | @@ -79,7 +79,7 @@ label { |
| 79 | 79 | ||
| 80 | #logo { | 80 | #logo { |
| 81 | margin: -130px auto 25px; | 81 | margin: -130px auto 25px; |
| 82 | padding: 0 0 25px 0; | 82 | padding: 0 0 25px; |
| 83 | width: 84px; | 83 | width: 84px; |
| 84 | height: 84px; | 84 | height: 84px; |
| 85 | overflow: hidden; | 85 | overflow: hidden; |
| ... | @@ -142,7 +142,7 @@ textarea { | ... | @@ -142,7 +142,7 @@ textarea { |
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | .form-table p { | 144 | .form-table p { |
| 145 | margin: 4px 0 0 0; | 145 | margin: 4px 0 0; |
| 146 | font-size: 11px; | 146 | font-size: 11px; |
| 147 | } | 147 | } |
| 148 | 148 | ... | ... |
| 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 20px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px 0;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:10px 0 10px 20px;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 0 16px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-right:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-left:50px}.wp-pwd .button.wp-hide-pw{left:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:left}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-left:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}} | ||
| ... | \ No newline at end of file | ... | \ 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: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 | ... | ... |
| ... | @@ -9,7 +9,7 @@ body { | ... | @@ -9,7 +9,7 @@ body { |
| 9 | color: #3c434a; | 9 | color: #3c434a; |
| 10 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | 10 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 11 | margin: 140px auto 25px; | 11 | margin: 140px auto 25px; |
| 12 | padding: 20px 20px 10px 20px; | 12 | padding: 20px 20px 10px; |
| 13 | max-width: 700px; | 13 | max-width: 700px; |
| 14 | -webkit-font-smoothing: subpixel-antialiased; | 14 | -webkit-font-smoothing: subpixel-antialiased; |
| 15 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); | 15 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
| ... | @@ -78,7 +78,7 @@ label { | ... | @@ -78,7 +78,7 @@ label { |
| 78 | 78 | ||
| 79 | #logo { | 79 | #logo { |
| 80 | margin: -130px auto 25px; | 80 | margin: -130px auto 25px; |
| 81 | padding: 0 0 25px 0; | 81 | padding: 0 0 25px; |
| 82 | width: 84px; | 82 | width: 84px; |
| 83 | height: 84px; | 83 | height: 84px; |
| 84 | overflow: hidden; | 84 | overflow: hidden; |
| ... | @@ -141,7 +141,7 @@ textarea { | ... | @@ -141,7 +141,7 @@ textarea { |
| 141 | } | 141 | } |
| 142 | 142 | ||
| 143 | .form-table p { | 143 | .form-table p { |
| 144 | margin: 4px 0 0 0; | 144 | margin: 4px 0 0; |
| 145 | font-size: 11px; | 145 | font-size: 11px; |
| 146 | } | 146 | } |
| 147 | 147 | ... | ... |
| 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 20px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:#2271b1}a:active,a:hover{color:#135e96}a:focus{color:#043959;box-shadow:0 0 0 1px #4f94d4,0 0 2px 1px rgba(79,148,212,.8)}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}label{cursor:pointer}#logo{margin:-130px auto 25px;padding:0 0 25px 0;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:140px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0 0;font-size:11px}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:218px}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:#0a4b78}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}} | ||
| ... | \ No newline at end of file | ... | \ 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: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 | ... | ... |
| ... | @@ -798,7 +798,7 @@ p.pagenav { | ... | @@ -798,7 +798,7 @@ p.pagenav { |
| 798 | } | 798 | } |
| 799 | 799 | ||
| 800 | .row-actions { | 800 | .row-actions { |
| 801 | color: #dcdcde; | 801 | color: #a7aaad; |
| 802 | font-size: 13px; | 802 | font-size: 13px; |
| 803 | padding: 2px 0 0; | 803 | padding: 2px 0 0; |
| 804 | position: relative; | 804 | position: relative; |
| ... | @@ -1255,6 +1255,11 @@ ul.cat-checklist { | ... | @@ -1255,6 +1255,11 @@ ul.cat-checklist { |
| 1255 | padding: 0 0 5px; | 1255 | padding: 0 0 5px; |
| 1256 | } | 1256 | } |
| 1257 | 1257 | ||
| 1258 | .plugins .row-actions { | ||
| 1259 | white-space: normal; | ||
| 1260 | min-width: 12em; | ||
| 1261 | } | ||
| 1262 | |||
| 1258 | .plugins .update .second, | 1263 | .plugins .update .second, |
| 1259 | .plugins .update .row-actions, | 1264 | .plugins .update .row-actions, |
| 1260 | .plugins .updated .second, | 1265 | .plugins .updated .second, |
| ... | @@ -1553,7 +1558,7 @@ div.action-links, | ... | @@ -1553,7 +1558,7 @@ div.action-links, |
| 1553 | } | 1558 | } |
| 1554 | 1559 | ||
| 1555 | .plugin-card .notice { | 1560 | .plugin-card .notice { |
| 1556 | margin: 20px 20px 0 20px; | 1561 | margin: 20px 20px 0; |
| 1557 | } | 1562 | } |
| 1558 | 1563 | ||
| 1559 | .plugin-icon { | 1564 | .plugin-icon { |
| ... | @@ -1644,7 +1649,7 @@ div.action-links, | ... | @@ -1644,7 +1649,7 @@ div.action-links, |
| 1644 | } | 1649 | } |
| 1645 | 1650 | ||
| 1646 | .tablenav.top { | 1651 | .tablenav.top { |
| 1647 | margin: 20px 0 5px 0; | 1652 | margin: 20px 0 5px; |
| 1648 | } | 1653 | } |
| 1649 | 1654 | ||
| 1650 | .tablenav.bottom { | 1655 | .tablenav.bottom { | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -797,7 +797,7 @@ p.pagenav { | ... | @@ -797,7 +797,7 @@ p.pagenav { |
| 797 | } | 797 | } |
| 798 | 798 | ||
| 799 | .row-actions { | 799 | .row-actions { |
| 800 | color: #dcdcde; | 800 | color: #a7aaad; |
| 801 | font-size: 13px; | 801 | font-size: 13px; |
| 802 | padding: 2px 0 0; | 802 | padding: 2px 0 0; |
| 803 | position: relative; | 803 | position: relative; |
| ... | @@ -1254,6 +1254,11 @@ ul.cat-checklist { | ... | @@ -1254,6 +1254,11 @@ ul.cat-checklist { |
| 1254 | padding: 0 0 5px; | 1254 | padding: 0 0 5px; |
| 1255 | } | 1255 | } |
| 1256 | 1256 | ||
| 1257 | .plugins .row-actions { | ||
| 1258 | white-space: normal; | ||
| 1259 | min-width: 12em; | ||
| 1260 | } | ||
| 1261 | |||
| 1257 | .plugins .update .second, | 1262 | .plugins .update .second, |
| 1258 | .plugins .update .row-actions, | 1263 | .plugins .update .row-actions, |
| 1259 | .plugins .updated .second, | 1264 | .plugins .updated .second, |
| ... | @@ -1552,7 +1557,7 @@ div.action-links, | ... | @@ -1552,7 +1557,7 @@ div.action-links, |
| 1552 | } | 1557 | } |
| 1553 | 1558 | ||
| 1554 | .plugin-card .notice { | 1559 | .plugin-card .notice { |
| 1555 | margin: 20px 20px 0 20px; | 1560 | margin: 20px 20px 0; |
| 1556 | } | 1561 | } |
| 1557 | 1562 | ||
| 1558 | .plugin-icon { | 1563 | .plugin-icon { |
| ... | @@ -1643,7 +1648,7 @@ div.action-links, | ... | @@ -1643,7 +1648,7 @@ div.action-links, |
| 1643 | } | 1648 | } |
| 1644 | 1649 | ||
| 1645 | .tablenav.top { | 1650 | .tablenav.top { |
| 1646 | margin: 20px 0 5px 0; | 1651 | margin: 20px 0 5px; |
| 1647 | } | 1652 | } |
| 1648 | 1653 | ||
| 1649 | .tablenav.bottom { | 1654 | .tablenav.bottom { | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
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-texture.png
0 → 100644
143 KB
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff 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.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-admin/site-editor.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.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
28.2 KB
33 KB
45.4 KB
82.4 KB
4.56 KB
4.63 KB
768 KB
34.7 KB
56.8 KB
72.5 KB
32.1 KB
4.56 KB
4.8 KB
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.
wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.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.
wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-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.
wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-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.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
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-content/themes/twentytwentytwo/index.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.
wp-content/themes/twentytwentytwo/readme.txt
0 → 100644
This diff is collapsed.
Click to expand it.
158 KB
wp-content/themes/twentytwentytwo/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.
wp-content/themes/twentytwentytwo/theme.json
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 could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
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-i18n.json
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.
wp-includes/block-supports/dimensions.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.
wp-includes/blocks/archives/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.
wp-includes/blocks/audio/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/audio/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/audio/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/audio/theme.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.
wp-includes/blocks/code/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/code/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/code/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/code/theme.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.
wp-includes/blocks/embed/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/embed/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/embed/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/embed/theme.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.
wp-includes/blocks/file/view.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/file/view.js
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/file/view.min.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/file/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.
wp-includes/blocks/gallery.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.
wp-includes/blocks/gallery/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/gallery/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/gallery/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/gallery/theme.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.
wp-includes/blocks/group/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/group/theme.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.
wp-includes/blocks/image.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.
wp-includes/blocks/image/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/image/theme.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.
wp-includes/blocks/navigation-link.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.
wp-includes/blocks/navigation-submenu.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.
wp-includes/blocks/navigation.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/block.json
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/editor-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/editor.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/editor.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/view.asset.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/view.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/navigation/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.
wp-includes/blocks/pattern.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/pattern/block.json
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-author.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-author/block.json
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-author/style-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-author/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-author/style.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-comments.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/post-comments/block.json
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.
wp-includes/blocks/post-comments/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.
wp-includes/blocks/post-navigation-link.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.
wp-includes/blocks/post-terms/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.
wp-includes/blocks/pullquote/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/pullquote/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/pullquote/theme.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.
wp-includes/blocks/quote/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/quote/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/quote/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/quote/theme.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.
wp-includes/blocks/search/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/search/theme.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.
wp-includes/blocks/separator/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/separator/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/separator/theme.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.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
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/table/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/table/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/table/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/table/theme.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.
wp-includes/blocks/template-part.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/template-part/block.json
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.
wp-includes/blocks/template-part/editor.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.
wp-includes/blocks/template-part/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
wp-includes/blocks/term-description.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.
wp-includes/blocks/video/theme-rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/video/theme-rtl.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/video/theme.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/video/theme.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/widget-group.php
0 → 100644
This diff is collapsed.
Click to expand it.
wp-includes/blocks/widget-group/block.json
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.
wp-includes/class-wp-http.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.
wp-includes/class-wp-theme-json-schema.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 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.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
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