Changeset 61204
- Timestamp:
- 11/11/2025 03:47:16 AM (13 days ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 1 added
- 7 edited
-
about.php (modified) (7 diffs)
-
contribute.php (modified) (2 diffs)
-
credits.php (modified) (2 diffs)
-
css/about.css (modified) (5 diffs)
-
freedoms.php (modified) (2 diffs)
-
images/about-release-badge.svg (modified) (1 diff)
-
images/about-release-logo.svg (added)
-
privacy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r60183 r61204 15 15 16 16 list( $display_version ) = explode( '-', wp_get_wp_version() ); 17 $display_major_version = '6. 8';17 $display_major_version = '6.9'; 18 18 19 19 $release_notes_url = sprintf( 20 20 /* translators: %s: WordPress version number. */ 21 21 __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ), 22 '6-8'22 sanitize_title( $display_major_version ) 23 23 ); 24 24 … … 26 26 /* translators: %s: WordPress version number. */ 27 27 __( 'https://make.wordpress.org/core/wordpress-%s-field-guide/' ), 28 '6-8' 28 sanitize_title( $display_major_version ) 29 ); 30 31 $release_page_url = sprintf( 32 /* translators: %s: WordPress version number. */ 33 __( 'https://wordpress.org/download/releases/%s/' ), 34 sanitize_title( $display_major_version ) 29 35 ); 30 36 … … 55 61 </nav> 56 62 57 <div class="about__section has-1-column"> 58 <div class="column"> 59 <h2><?php _e( 'A release polished to a high sheen.' ); ?></h2> 60 <p class="is-subheading"><?php _e( 'WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.' ); ?></p> 61 <p><?php _e( 'The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.' ); ?></p> 62 <p><?php _e( 'Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.' ); ?></p> 63 </div> 64 </div> 65 66 <div class="about__section has-2-columns"> 67 <div class="column is-vertically-aligned-center"> 68 <h3><?php _e( 'The Style Book gets a cleaner look—and a few new tricks' ); ?></h3> 69 <p> 70 <?php _e( 'The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.' ); ?> 71 </p> 72 <?php if ( ! wp_is_block_theme() ) : ?> 73 <p> 74 <?php 75 if ( current_user_can( 'edit_theme_options' ) && ( current_theme_supports( 'editor-styles' ) || wp_theme_has_theme_json() ) ) { 76 printf( 77 /* translators: %s is a direct link to the Style Book. */ 78 __( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find <a href="%s">the Style Book</a> under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.' ), 79 add_query_arg( 'p', '/stylebook', admin_url( '/site-editor.php' ) ) 80 ); 81 } else { 82 _e( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.' ); 83 } 84 ?> 85 </p> 86 <?php endif; ?> 87 </div> 88 <div class="column is-vertically-aligned-center"> 89 <div class="about__image"> 90 <img src="https://s.w.org/images/core/6.8/feature-01.webp?v=23478" alt="" height="436" width="436" /> 91 </div> 92 </div> 93 </div> 94 95 <div class="about__section has-2-columns"> 96 <div class="column is-vertically-aligned-center"> 97 <div class="about__image"> 98 <img src="https://s.w.org/images/core/6.8/feature-02.png?v=23478" alt="" height="436" width="436" /> 99 </div> 100 </div> 101 <div class="column is-vertically-aligned-center"> 102 <h3><?php _e( 'Editor improvements' ); ?></h3> 103 <p><?php _e( 'Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.' ); ?></p> 104 </div> 105 </div> 106 107 <div class="about__section has-2-columns"> 108 <div class="column is-vertically-aligned-center"> 109 <h3><?php _e( 'Near-instant page loads, thanks to Speculative Loading' ); ?></h3> 110 <p><?php _e( 'In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.' ); ?></p> 111 </div> 112 <div class="column is-vertically-aligned-center"> 113 <div class="about__image"> 114 <img src="https://s.w.org/images/core/6.8/feature-03.webp?v=23478" alt="" height="436" width="436" /> 115 </div> 116 </div> 117 </div> 118 119 <div class="about__section has-2-columns"> 120 <div class="column is-vertically-aligned-center"> 121 <div class="about__image"> 122 <img src="https://s.w.org/images/core/6.8/feature-04.png?v=23478" alt="" height="436" width="436" /> 123 </div> 124 </div> 125 <div class="column is-vertically-aligned-center"> 126 <h3><?php _e( 'Stronger password security with bcrypt' ); ?></h3> 127 <p><?php _e( 'Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.' ); ?></p> 63 <div class="about__section"> 64 <div class="column"> 65 <h2><?php _e( 'Welcome to WordPress 6.9' ); ?></h2> 66 <p class="is-subheading"><?php _e( 'WordPress 6.9 introduces a more intuitive way to create content, together. Every detail is designed to fit your creative flow, from Notes that let you collaborate directly in the editor to a powerful Command Palette that helps you reach every part of your site.' ); ?></p> 67 </div> 68 </div> 69 70 <div class="about__section has-2-columns"> 71 <div class="column is-vertically-aligned-center"> 72 <h3><?php _ex( 'Notes', 'about page section title' ); ?></h3> 73 <p> 74 <strong><?php _e( 'Leave feedback right where you’re working.' ); ?></strong><br /> 75 <?php _e( 'With notes attached directly to blocks, your team can stay aligned, track changes, and turn feedback into action all in one place. Whether you’re working on copy or refining design, collaboration happens seamlessly on the canvas itself.' ); ?> 76 </p> 77 </div> 78 <div class="column is-vertically-aligned-center"> 79 <div class="about__image"> 80 <img src="data:image/svg+xml,%3Csvg width='436' height='436' viewbox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='%23ececec' /%3E%3C/svg%3E" alt="" height="436" width="436" /> 81 </div> 82 </div> 83 </div> 84 85 <div class="about__section has-2-columns"> 86 <div class="column is-vertically-aligned-center"> 87 <div class="about__image"> 88 <img src="data:image/svg+xml,%3Csvg width='436' height='436' viewbox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='%23ececec' /%3E%3C/svg%3E" alt="" height="436" width="436" /> 89 </div> 90 </div> 91 <div class="column is-vertically-aligned-center"> 92 <h3><?php _e( 'Visual drag and drop' ); ?></h3> 93 <p> 94 <strong><?php _e( 'Design flows naturally.' ); ?></strong><br /> 95 <?php _e( 'Building layouts is now more intuitive and flexible with clear drag handles and a live preview that shows exactly what you’re moving—a faster way to build pages.' ); ?> 96 </p> 97 </div> 98 </div> 99 100 <div class="about__section has-2-columns"> 101 <div class="column is-vertically-aligned-center"> 102 <h3><?php _e( 'Command Palette, everywhere' ); ?></h3> 103 <p> 104 <strong><?php _e( 'Your tools are always at hand.' ); ?></strong><br /> 105 <?php _e( 'Access the Command Palette from any part of your site, whether you’re writing your latest post, deep in design in the Site Editor, or browsing your plugins. Everything you need, just a few keystrokes away.' ); ?> 106 </p> 107 </div> 108 <div class="column is-vertically-aligned-center"> 109 <div class="about__image"> 110 <img src="data:image/svg+xml,%3Csvg width='436' height='436' viewbox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='%23ececec' /%3E%3C/svg%3E" alt="" height="436" width="436" /> 111 </div> 112 </div> 113 </div> 114 115 <div class="about__section has-2-columns"> 116 <div class="column is-vertically-aligned-center"> 117 <div class="about__image"> 118 <img src="data:image/svg+xml,%3Csvg width='436' height='436' viewbox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='%23ececec' /%3E%3C/svg%3E" alt="" height="436" width="436" /> 119 </div> 120 </div> 121 <div class="column is-vertically-aligned-center"> 122 <h3><?php _e( 'Fit text to container' ); ?></h3> 123 <p> 124 <strong><?php _e( 'Content that adapts.' ); ?></strong><br /> 125 <?php _e( 'A new typography option for text-based blocks, starting with the Paragraph and Heading blocks, that automatically adjusts font size to fill its container perfectly. Ideal for banners, callouts, and standout moments in your design. No manual tweaks, just an instant clean design.' ); ?> 126 </p> 128 127 </div> 129 128 </div> … … 132 131 133 132 <div class="about__section has-2-columns"> 134 <div class="column">135 <div class="about__image">136 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">137 <path fill="#1e1e1e" d="M24 13.84c-.752 0-1.397-.287-1.936-.86a2.902 2.902 0 0 1-.809-2.06c0-.8.27-1.487.809-2.06S23.248 8 24 8c.753 0 1.398.287 1.937.86.54.573.809 1.26.809 2.06s-.27 1.487-.809 2.06-1.184.86-1.937.86ZM19.976 40V18.68a69.562 69.562 0 0 1-4.945-.56 45.877 45.877 0 0 1-4.57-.92l.565-2.4a46.79 46.79 0 0 0 6.356 1.14c2.106.227 4.312.34 6.618.34 2.307 0 4.513-.113 6.62-.34a46.786 46.786 0 0 0 6.355-1.14l.564 2.4c-1.454.373-2.977.68-4.57.92a69.55 69.55 0 0 1-4.945.56V40h-2.256V29.6h-3.535V40h-2.257Z"/>138 </svg>139 </div>140 <h3><?php _e( 'Accessibility improvements' ); ?></h3>141 <p><?php _e( '100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.' ); ?></p>142 </div>143 <div class="column">144 <div class="about__image">145 <svg width="48" height="48" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">146 <path fill="#1e1e1e" d="M18.1823 11.6392C18.1823 13.0804 17.0139 14.2487 15.5727 14.2487C14.3579 14.2487 13.335 13.4179 13.0453 12.2922L13.0377 12.2625L13.0278 12.2335L12.3985 10.377L12.3942 10.3785C11.8571 8.64997 10.246 7.39405 8.33961 7.39405C5.99509 7.39405 4.09448 9.29465 4.09448 11.6392C4.09448 13.9837 5.99509 15.8843 8.33961 15.8843C8.88499 15.8843 9.40822 15.781 9.88943 15.5923L9.29212 14.0697C8.99812 14.185 8.67729 14.2487 8.33961 14.2487C6.89838 14.2487 5.73003 13.0804 5.73003 11.6392C5.73003 10.1979 6.89838 9.02959 8.33961 9.02959C9.55444 9.02959 10.5773 9.86046 10.867 10.9862L10.8772 10.9836L11.4695 12.7311C11.9515 14.546 13.6048 15.8843 15.5727 15.8843C17.9172 15.8843 19.8178 13.9837 19.8178 11.6392C19.8178 9.29465 17.9172 7.39404 15.5727 7.39404C15.0287 7.39404 14.5066 7.4968 14.0264 7.6847L14.6223 9.20781C14.9158 9.093 15.2358 9.02959 15.5727 9.02959C17.0139 9.02959 18.1823 10.1979 18.1823 11.6392Z"></path>147 </svg>148 </div>149 <h3><?php _e( 'Take a load off the database' ); ?></h3>150 <p><?php _e( 'Work continues on optimizing cache key generation in the <code>WP_Query</code> class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.' ); ?></p>151 </div>152 </div>153 154 <div class="about__section has-1-column">155 133 <div class="column"> 156 134 <div class="about__image"> … … 161 139 </div> 162 140 <h3><?php _e( 'Performance updates' ); ?></h3> 163 <p><?php _e( 'WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.' ); ?></p> 141 <p><?php _e( 'WordPress 6.9 includes a broad set of performance updates, including a faster way of browsing and selecting styles, optimizations of the navigation link, fixes the layout shifts caused by the Video block, quicker load of the terms selector, no extra network request for retrieving feature media, and optimization in the Editor.' ); ?></p> 142 </div> 143 <div class="column"> 144 <div class="about__image"> 145 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"> 146 <path fill="#1e1e1e" d="M24 13.84c-.752 0-1.397-.287-1.936-.86a2.902 2.902 0 0 1-.809-2.06c0-.8.27-1.487.809-2.06S23.248 8 24 8c.753 0 1.398.287 1.937.86.54.573.809 1.26.809 2.06s-.27 1.487-.809 2.06-1.184.86-1.937.86ZM19.976 40V18.68a69.562 69.562 0 0 1-4.945-.56 45.877 45.877 0 0 1-4.57-.92l.565-2.4a46.79 46.79 0 0 0 6.356 1.14c2.106.227 4.312.34 6.618.34 2.307 0 4.513-.113 6.62-.34a46.786 46.786 0 0 0 6.355-1.14l.564 2.4c-1.454.373-2.977.68-4.57.92a69.55 69.55 0 0 1-4.945.56V40h-2.256V29.6h-3.535V40h-2.257Z"/> 147 </svg> 148 </div> 149 <h3><?php _e( 'Accessibility improvements' ); ?></h3> 150 <p><?php _e( '70+ accessibility fixes and enhancements focus on central areas of the WordPress experience. From globally hiding CSS-generated content from assistive technology and improvements to screen reader announcements and user experience, to fixing cursor position and keeping typing focus when clicking on an autocomplete suggestion item.' ); ?></p> 164 151 </div> 165 152 </div> … … 182 169 <div class="column aligncenter"> 183 170 <div class="about__image"> 184 <a href="<?php echo esc_url( __( 'https://wordpress.org/download/releases/6-8/' )); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a>171 <a href="<?php echo esc_url( $release_page_url ); ?>" class="button button-primary button-hero"><?php _e( 'See everything new' ); ?></a> 185 172 </div> 186 173 </div> … … 191 178 <div class="about__section has-3-columns"> 192 179 <div class="column about__image is-vertically-aligned-top"> 193 <img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6. 8' ) ); ?>" alt="" height="280" width="280" />180 <img src="<?php echo esc_url( admin_url( 'images/about-release-badge.svg?ver=6.9' ) ); ?>" alt="" height="280" width="280" /> 194 181 </div> 195 182 <div class="column is-vertically-aligned-center" style="grid-column-end:span 2"> -
trunk/src/wp-admin/contribute.php
r57715 r61204 14 14 15 15 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 16 $header_alt_text = sprintf( 17 /* translators: %s: Version number. */ 18 __( 'WordPress %s' ), 19 $display_version 20 ); 16 21 17 22 require_once ABSPATH . 'wp-admin/admin-header.php'; … … 20 25 21 26 <div class="about__header"> 27 <div class="about__header-image"> 28 <img src="images/about-release-logo.svg?ver=6.9" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> 29 </div> 30 22 31 <div class="about__header-title"> 23 32 <h1> -
trunk/src/wp-admin/credits.php
r59552 r61204 15 15 16 16 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 17 $header_alt_text = sprintf( 18 /* translators: %s: Version number. */ 19 __( 'WordPress %s' ), 20 $display_version 21 ); 17 22 18 23 require_once ABSPATH . 'wp-admin/admin-header.php'; … … 23 28 24 29 <div class="about__header"> 30 <div class="about__header-image"> 31 <img src="images/about-release-logo.svg?ver=6.9" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> 32 </div> 33 25 34 <div class="about__header-title"> 26 35 <h1> -
trunk/src/wp-admin/css/about.css
r60136 r61204 22 22 .about__container { 23 23 /* Section backgrounds */ 24 --background: # f6f5f2;24 --background: #ececec; 25 25 --subtle-background: #eef0fd; 26 26 … … 31 31 /* Accent colors: used in header, on special classes. */ 32 32 --accent-1: #3858e9; /* Link color */ 33 --accent-2: #3858e9; /* Accent background */ 34 --accent-3: #ededed; /* hr background */ 33 --accent-2: #183ad6; /* Accent background */ 34 --accent-3: #ececec; /* hr background */ 35 36 /* Header background on small screens */ 37 --accent-gradient: linear-gradient(90deg, #000000 4.7%, var(--accent-1) 83.84%)/*rtl:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)*/; 35 38 36 39 /* Navigation colors. */ … … 40 43 --nav-current: var(--accent-1); 41 44 42 --border-radius: 0;45 --border-radius: 1rem; 43 46 44 47 --gap: 2rem; … … 577 580 min-height: clamp(10rem, 25vw, 18.75rem); 578 581 border-radius: var(--border-radius); 579 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='412' height='198' fill='none'%3E%3Cpath stroke='%239D1825' stroke-width='12' d='M6 0v198'/%3E%3Cpath stroke='%23D90120' stroke-width='12' d='m30.171 1.82 51.246 191.253'/%3E%3Cpath stroke='%23408538' stroke-width='12' d='m62.427 7.626 87.895 177.422'/%3E%3Cpath stroke='%23FFEE58' stroke-width='12' d='M98.769 20.973 230.2 169.061'/%3E%3Cpath stroke='%23F17826' stroke-width='12' d='m152.67 36.891 161.59 114.424'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='m246.433 66.098 190.42 54.264'/%3E%3C/svg%3E%0A");582 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z'/%3E%3Cg clip-path='url(%23c)'%3E%3Cpath stroke='url(%23d)' stroke-miterlimit='10' stroke-width='50' d='M643.203 90.702c29.374-29.375 76.993-29.375 106.367 0 67.745 73.346-33.051 174.1-106.367 106.367-29.369-29.369-29.369-76.993 0-106.367Z'/%3E%3Cpath stroke='url(%23e)' stroke-miterlimit='10' stroke-width='50' d='M643.215 90.71 763.002-29.074'/%3E%3Cpath stroke='url(%23f)' stroke-miterlimit='10' stroke-width='50' d='M981.603 113.114c-29.375 29.375-76.993 29.375-106.368 0-67.745-73.347 33.051-174.1 106.368-106.368 29.367 29.37 29.367 76.993 0 106.368Z'/%3E%3Cpath stroke='url(%23g)' stroke-miterlimit='10' stroke-width='50' d='M981.622 113.105 870.501 224.226'/%3E%3Ccircle cx='816.697' cy='221.067' r='24.068' fill='%233858e9'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='47' x2='963.5' y1='46' y2='318.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='565.98' x2='700.462' y1='158.471' y2='23.995' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' x1='722.025' x2='545.675' y1='-41.283' y2='135.067' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' x1='1058.83' x2='924.344' y1='45.345' y2='179.821' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' x1='902.813' x2='1079.16' y1='245.098' y2='68.748' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3CclipPath id='c'%3E%3Cpath fill='%23fff' d='M596-42h433v287.934H596z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 580 583 background-repeat: no-repeat; 581 584 background-position: right center; 582 background-size: auto 65%;585 background-size: cover; 583 586 background-color: var(--background); 587 color: var(--text-light); 588 } 589 590 .credits-php .about__header { 591 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='M964.296 78.3c35.067-35.067 91.914-35.067 126.984 0 80.87 87.56-39.46 207.839-126.984 126.98-35.061-35.06-35.061-91.913 0-126.98Z'/%3E%3Cpath stroke='url(%23d)' stroke-miterlimit='10' stroke-width='50' d='M784.296 78.3c35.067-35.067 91.914-35.067 126.982 0 80.875 87.56-39.456 207.839-126.982 126.98-35.061-35.06-35.061-91.913 0-126.98Z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='378.5' x2='926' y1='402' y2='9.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='872.106' x2='1032.65' y1='159.202' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='692.106' x2='852.648' y1='159.202' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 592 } 593 594 .freedoms-php .about__header { 595 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='M847.111 61.731a1 1 0 0 1 1.778 0l29.511 57.436c.096.186.247.337.433.433l57.436 29.511a1 1 0 0 1 0 1.778L878.833 180.4a1 1 0 0 0-.433.433l-29.511 57.436a1 1 0 0 1-1.778 0L817.6 180.833a1 1 0 0 0-.433-.433l-57.436-29.511a1 1 0 0 1 0-1.778l57.436-29.511c.186-.096.337-.247.433-.433z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='47' x2='1264.5' y1='46' y2='46' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='692.106' x2='852.648' y1='167.202' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 596 } 597 598 .privacy-php .about__header { 599 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='m758 90 90-30 90 30v11.511c0 59.891-35.271 114.165-90 138.489-54.729-24.324-90-78.598-90-138.489z'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='b' cx='0' cy='0' r='1' gradientTransform='rotate(37.724 183.217 1253.89)scale(615.701 397.883)' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.35' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3ClinearGradient id='c' x1='692.106' x2='852.648' y1='167.202' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 600 } 601 602 .contribute-php .about__header { 603 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='M924.567 149.134a1 1 0 0 1 0 1.732L771.5 239.135a1 1 0 0 1-1.5-.866V61.731a1 1 0 0 1 1.5-.866z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='606.5' x2='721' y1='0' y2='355' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='833.12' x2='992.039' y1='-5.894' y2='131.9' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 584 604 } 585 605 586 606 [dir="rtl"] .about__header { 587 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='412' height='198' fill='none'%3E%3Cg transform='scale(-1,1)' transform-origin='50%25 50%25'%3E%3Cpath stroke='%239D1825' stroke-width='12' d='M6 0v198'/%3E%3Cpath stroke='%23D90120' stroke-width='12' d='m30.171 1.82 51.246 191.253'/%3E%3Cpath stroke='%23408538' stroke-width='12' d='m62.427 7.626 87.895 177.422'/%3E%3Cpath stroke='%23FFEE58' stroke-width='12' d='M98.769 20.973 230.2 169.061'/%3E%3Cpath stroke='%23F17826' stroke-width='12' d='m152.67 36.891 161.59 114.424'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='m246.433 66.098 190.42 54.264'/%3E%3C/g%3E%3C/svg%3E%0A"); 588 } 607 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z' transform='matrix(-1 0 0 1 1000 0)'/%3E%3Cg clip-path='url(%23c)'%3E%3Cpath stroke='url(%23d)' stroke-miterlimit='10' stroke-width='50' d='M18.203 90.702c29.375-29.375 76.993-29.375 106.367 0 67.745 73.346-33.05 174.1-106.367 106.367-29.369-29.369-29.369-76.993 0-106.367Z'/%3E%3Cpath stroke='url(%23e)' stroke-miterlimit='10' stroke-width='50' d='M18.215 90.71 138.002-29.074'/%3E%3Cpath stroke='url(%23f)' stroke-miterlimit='10' stroke-width='50' d='M356.603 113.114c-29.375 29.375-76.993 29.375-106.368 0-67.745-73.347 33.051-174.1 106.368-106.368 29.368 29.37 29.368 76.993 0 106.368Z'/%3E%3Cpath stroke='url(%23g)' stroke-miterlimit='10' stroke-width='50' d='M356.622 113.105 245.501 224.226'/%3E%3Ccircle cx='191.698' cy='221.067' r='24.068' fill='%233858e9'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='47' x2='963.5' y1='46' y2='318.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='218' x2='51.502' y1='120.499' y2='21.995' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' x1='78' x2='216' y1='-29.003' y2='68.497' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' x1='175.805' x2='405.499' y1='53.58' y2='103.005' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.608' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' x1='414' x2='180.5' y1='137.499' y2='59.499' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.5' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3CclipPath id='c'%3E%3Cpath fill='%23fff' d='M-29-42h433v287.934H-29z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 608 } 609 610 [dir="rtl"] .credits-php .about__header { 611 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z' transform='matrix(-1 0 0 1 1000 0)'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='M35.705 78.3C.637 43.233-56.21 43.233-91.279 78.3c-80.875 87.56 39.457 207.839 126.983 126.98 35.06-35.06 35.06-91.913 0-126.98Z'/%3E%3Cpath stroke='url(%23d)' stroke-miterlimit='10' stroke-width='50' d='M215.704 78.3c-35.067-35.067-91.914-35.067-126.982 0-80.875 87.56 39.456 207.839 126.982 126.98 35.061-35.06 35.061-91.913 0-126.98Z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='378.5' x2='926' y1='402' y2='9.5' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='127.894' x2='-32.648' y1='159.202' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='307.894' x2='147.352' y1='159.202' y2='-1.337' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 612 } 613 614 [dir="rtl"] .freedoms-php .about__header { 615 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z' transform='matrix(-1 0 0 1 1000 0)'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='M152.889 61.731a1 1 0 0 0-1.778 0L121.6 119.167a1 1 0 0 1-.433.433l-57.436 29.511a1 1 0 0 0 0 1.778l57.436 29.511c.186.096.337.247.433.433l29.511 57.436a1 1 0 0 0 1.778 0l29.511-57.436c.096-.186.247-.337.433-.433l57.436-29.511a1 1 0 0 0 0-1.778L182.833 119.6a1 1 0 0 1-.433-.433z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='47' x2='1264.5' y1='46' y2='46' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='307.894' x2='147.352' y1='167.202' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 616 } 617 618 [dir="rtl"] .privacy-php .about__header { 619 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z' transform='matrix(-1 0 0 1 1000 0)'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='m242 90-90-30-90 30v11.511C62 161.402 97.27 215.676 152 240c54.729-24.324 90-78.598 90-138.489z'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='b' cx='0' cy='0' r='1' gradientTransform='rotate(37.724 183.217 1253.89)scale(615.701 397.883)' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.35' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3ClinearGradient id='c' x1='307.894' x2='147.352' y1='167.202' y2='6.663' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.665' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 620 } 621 622 [dir="rtl"] .contribute-php .about__header { 623 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1000 300'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M0 0h1000v300H0z' transform='matrix(-1 0 0 1 1000 0)'/%3E%3Cpath stroke='url(%23c)' stroke-miterlimit='10' stroke-width='50' d='M241.498 149.134a1 1 0 0 1 0 1.732L88.43 239.135a1 1 0 0 1-1.5-.866V61.731a1 1 0 0 1 1.5-.866z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='606.5' x2='721' y1='0' y2='355' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='.65' stop-color='%233858e9'/%3E%3Cstop offset='1' stop-color='%23d3cdb6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='176' x2='-6.506' y1='45.5' y2='213.124' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d3cdb6'/%3E%3Cstop offset='.64' stop-color='%233858e9'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='1000' height='300' fill='%23fff' rx='16'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); 624 } 625 589 626 590 627 .about__header-image { 591 margin: 0 var(--gap) 3em;628 margin: 0 0 calc(var(--gap) * 1.5); 592 629 } 593 630 … … 730 767 .privacy-php .about__header, 731 768 .contribute-php .about__header { 732 background -image: none;769 background: var(--accent-gradient) !important; 733 770 } 734 771 -
trunk/src/wp-admin/freedoms.php
r59667 r61204 20 20 21 21 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 22 $header_alt_text = sprintf( 23 /* translators: %s: Version number. */ 24 __( 'WordPress %s' ), 25 $display_version 26 ); 22 27 23 28 require_once ABSPATH . 'wp-admin/admin-header.php'; … … 26 31 27 32 <div class="about__header"> 33 <div class="about__header-image"> 34 <img src="images/about-release-logo.svg?ver=6.9" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> 35 </div> 36 28 37 <div class="about__header-title"> 29 38 <h1> -
trunk/src/wp-admin/images/about-release-badge.svg
r60087 r61204 1 1 <svg width="280" height="280" viewBox="0 0 280 280" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 <path d="M0 16C0 7.16344 7.16344 0 16 0H264C272.837 0 280 7.16344 280 16V264C280 272.837 272.837 280 264 280H16C7.16344 280 0 272.837 0 264V16Z" fill="# F7F7F7"/>3 <path d="M10 3.115 173.001C99.9889 172.979 96.9373 172.437 93.9602 171.374C90.983 170.289 88.3036 168.535 85.9219 166.111C83.5402 163.665 81.6475 160.422 80.244 156.382C78.8405 152.32 78.1494 147.291 78.1707 141.294C78.1707 135.701 78.7661 130.714 79.9569 126.334C81.1478 121.953 82.8597 118.253 85.0925 115.233C87.3254 112.192 90.0155 109.874 93.1627 108.279C96.3313 106.685 99.872 105.887 103.785 105.887C107.889 105.887 111.525 106.695 114.694 108.311C117.884 109.928 120.457 112.139 122.413 114.946C124.37 117.732 125.582 120.879 126.05 124.388H114.407C113.811 121.879 112.589 119.88 110.739 118.391C108.91 116.881 106.592 116.126 103.785 116.126C99.2553 116.126 95.7677 118.093 93.3222 122.028C90.898 125.962 89.6752 131.363 89.6539 138.232H90.1005C91.1425 136.36 92.4929 134.755 94.1516 133.415C95.8103 132.075 97.6816 131.044 99.7656 130.321C101.871 129.577 104.093 129.205 106.432 129.205C110.26 129.205 113.694 130.119 116.735 131.948C119.798 133.777 122.222 136.297 124.008 139.508C125.794 142.697 126.677 146.355 126.656 150.481C126.677 154.776 125.699 158.636 123.721 162.06C121.743 165.462 118.99 168.141 115.459 170.098C111.929 172.054 107.815 173.022 103.115 173.001ZM103.051 163.431C105.369 163.431 107.442 162.868 109.271 161.741C111.1 160.613 112.546 159.093 113.609 157.179C114.673 155.265 115.194 153.117 115.172 150.736C115.194 148.397 114.683 146.281 113.641 144.388C112.621 142.495 111.206 140.996 109.399 139.89C107.591 138.785 105.529 138.232 103.211 138.232C101.488 138.232 99.8826 138.561 98.394 139.221C96.9054 139.88 95.6082 140.794 94.5025 141.964C93.3967 143.112 92.5248 144.452 91.8868 145.983C91.2701 147.493 90.9511 149.109 90.9299 150.831C90.9511 153.107 91.4828 155.201 92.5248 157.115C93.5668 159.029 95.0022 160.56 96.831 161.709C98.6598 162.857 100.733 163.431 103.051 163.431ZM139.176 172.809C137.241 172.809 135.582 172.129 134.2 170.768C132.818 169.407 132.137 167.748 132.159 165.792C132.137 163.878 132.818 162.24 134.2 160.879C135.582 159.518 137.241 158.838 139.176 158.838C141.048 158.838 142.674 159.518 144.057 160.879C145.46 162.24 146.173 163.878 146.194 165.792C146.173 167.089 145.832 168.269 145.173 169.332C144.535 170.396 143.685 171.246 142.621 171.884C141.579 172.501 140.431 172.809 139.176 172.809ZM176.059 173.001C171.317 173.001 167.106 172.203 163.427 170.608C159.77 169.013 156.899 166.834 154.815 164.069C152.752 161.283 151.731 158.125 151.753 154.595C151.731 151.852 152.327 149.332 153.539 147.036C154.751 144.739 156.389 142.825 158.451 141.294C160.535 139.742 162.853 138.753 165.405 138.327V137.881C162.045 137.137 159.323 135.425 157.239 132.745C155.176 130.045 154.156 126.929 154.177 123.399C154.156 120.039 155.091 117.041 156.984 114.404C158.877 111.767 161.471 109.694 164.767 108.184C168.063 106.653 171.827 105.887 176.059 105.887C180.248 105.887 183.98 106.653 187.255 108.184C190.551 109.694 193.146 111.767 195.038 114.404C196.952 117.041 197.909 120.039 197.909 123.399C197.909 126.929 196.857 130.045 194.751 132.745C192.667 135.425 189.977 137.137 186.681 137.881V138.327C189.233 138.753 191.53 139.742 193.571 141.294C195.634 142.825 197.271 144.739 198.483 147.036C199.717 149.332 200.333 151.852 200.333 154.595C200.333 158.125 199.291 161.283 197.207 164.069C195.123 166.834 192.253 169.013 188.595 170.608C184.959 172.203 180.78 173.001 176.059 173.001ZM176.059 163.878C178.505 163.878 180.631 163.463 182.439 162.634C184.246 161.783 185.65 160.592 186.649 159.061C187.649 157.53 188.159 155.765 188.18 153.766C188.159 151.682 187.617 149.843 186.553 148.248C185.511 146.632 184.076 145.366 182.247 144.452C180.44 143.537 178.377 143.08 176.059 143.08C173.72 143.08 171.636 143.537 169.807 144.452C167.978 145.366 166.532 146.632 165.469 148.248C164.427 149.843 163.916 151.682 163.938 153.766C163.916 155.765 164.406 157.53 165.405 159.061C166.405 160.571 167.808 161.751 169.616 162.602C171.444 163.452 173.592 163.878 176.059 163.878ZM176.059 134.117C178.058 134.117 179.823 133.713 181.354 132.905C182.906 132.097 184.129 130.97 185.022 129.524C185.915 128.078 186.373 126.408 186.394 124.516C186.373 122.644 185.926 121.007 185.054 119.603C184.182 118.178 182.97 117.083 181.418 116.318C179.866 115.531 178.079 115.138 176.059 115.138C173.996 115.138 172.178 115.531 170.604 116.318C169.052 117.083 167.84 118.178 166.968 119.603C166.117 121.007 165.703 122.644 165.724 124.516C165.703 126.408 166.128 128.078 167 129.524C167.893 130.948 169.116 132.075 170.668 132.905C172.242 133.713 174.039 134.117 176.059 134.117Z" fill="black"/>2 <path d="M0 16C0 7.16344 7.16344 0 16 0H264C272.837 0 280 7.16344 280 16V264C280 272.837 272.837 280 264 280H16C7.16344 280 0 272.837 0 264V16Z" fill="#ECECEC"/> 3 <path d="M102.238 172.999C99.1117 172.977 96.0601 172.435 93.083 171.372C90.1058 170.287 87.4264 168.533 85.0447 166.109C82.663 163.663 80.7703 160.42 79.3668 156.38C77.9633 152.318 77.2722 147.289 77.2935 141.292C77.2935 135.699 77.8889 130.712 79.0798 126.332C80.2706 121.951 81.9825 118.251 84.2153 115.231C86.4482 112.19 89.1383 109.872 92.2855 108.278C95.4541 106.683 98.9948 105.885 102.908 105.885C107.012 105.885 110.648 106.693 113.817 108.309C117.007 109.926 119.58 112.137 121.536 114.944C123.492 117.73 124.705 120.877 125.172 124.386H113.53C112.934 121.877 111.711 119.878 109.861 118.389C108.033 116.879 105.715 116.124 102.908 116.124C98.3781 116.124 94.8905 118.091 92.445 122.026C90.0208 125.96 88.798 131.361 88.7768 138.23H89.2233C90.2653 136.358 91.6157 134.753 93.2744 133.413C94.9331 132.073 96.8044 131.042 98.8884 130.319C100.994 129.575 103.216 129.203 105.555 129.203C109.383 129.203 112.817 130.117 115.858 131.946C118.92 133.775 121.345 136.295 123.131 139.506C124.917 142.695 125.8 146.353 125.778 150.479C125.8 154.774 124.822 158.634 122.844 162.058C120.866 165.46 118.112 168.139 114.582 170.096C111.052 172.052 106.937 173.02 102.238 172.999ZM102.174 163.429C104.492 163.429 106.565 162.866 108.394 161.739C110.223 160.612 111.669 159.091 112.732 157.177C113.795 155.263 114.316 153.116 114.295 150.734C114.316 148.395 113.806 146.279 112.764 144.386C111.743 142.493 110.329 140.994 108.522 139.888C106.714 138.783 104.651 138.23 102.333 138.23C100.611 138.23 99.0054 138.559 97.5168 139.219C96.0282 139.878 94.7311 140.792 93.6253 141.962C92.5195 143.11 91.6476 144.45 91.0096 145.981C90.3929 147.491 90.0739 149.107 90.0527 150.829C90.0739 153.105 90.6056 155.2 91.6476 157.113C92.6896 159.027 94.125 160.558 95.9538 161.707C97.7826 162.855 99.856 163.429 102.174 163.429ZM138.299 172.807C136.364 172.807 134.705 172.127 133.323 170.766C131.941 169.405 131.26 167.746 131.282 165.79C131.26 163.876 131.941 162.238 133.323 160.877C134.705 159.516 136.364 158.836 138.299 158.836C140.17 158.836 141.797 159.516 143.179 160.877C144.583 162.238 145.295 163.876 145.317 165.79C145.295 167.087 144.955 168.267 144.296 169.33C143.658 170.394 142.807 171.244 141.744 171.882C140.702 172.499 139.554 172.807 138.299 172.807ZM176.131 105.885C179.257 105.906 182.298 106.459 185.254 107.544C188.231 108.607 190.91 110.351 193.292 112.775C195.674 115.178 197.566 118.4 198.97 122.44C200.373 126.481 201.075 131.478 201.075 137.432C201.096 143.046 200.501 148.065 199.289 152.488C198.098 156.89 196.386 160.612 194.153 163.652C191.92 166.693 189.23 169.011 186.083 170.606C182.936 172.201 179.395 172.999 175.461 172.999C171.335 172.999 167.678 172.191 164.488 170.574C161.319 168.958 158.757 166.747 156.801 163.94C154.844 161.133 153.643 157.921 153.196 154.306H164.839C165.434 156.901 166.646 158.963 168.475 160.495C170.325 162.004 172.654 162.759 175.461 162.759C179.99 162.759 183.478 160.792 185.923 156.858C188.369 152.924 189.592 147.459 189.592 140.463H189.145C188.103 142.334 186.753 143.95 185.094 145.311C183.435 146.651 181.553 147.682 179.448 148.405C177.364 149.128 175.153 149.49 172.813 149.49C168.986 149.49 165.541 148.575 162.478 146.747C159.437 144.918 157.024 142.408 155.238 139.219C153.473 136.029 152.579 132.382 152.558 128.278C152.558 124.025 153.536 120.207 155.493 116.826C157.47 113.424 160.224 110.744 163.754 108.788C167.284 106.81 171.41 105.843 176.131 105.885ZM176.163 115.455C173.866 115.455 171.793 116.018 169.943 117.145C168.114 118.251 166.668 119.761 165.604 121.675C164.562 123.567 164.041 125.683 164.041 128.022C164.063 130.34 164.584 132.446 165.604 134.338C166.646 136.231 168.061 137.73 169.847 138.836C171.654 139.942 173.717 140.495 176.035 140.495C177.758 140.495 179.363 140.165 180.852 139.506C182.34 138.846 183.637 137.932 184.743 136.762C185.87 135.572 186.742 134.221 187.359 132.711C187.997 131.202 188.305 129.607 188.284 127.927C188.284 125.694 187.752 123.631 186.689 121.738C185.647 119.846 184.212 118.325 182.383 117.177C180.575 116.029 178.502 115.455 176.163 115.455Z" fill="black"/> 4 4 </svg> -
trunk/src/wp-admin/privacy.php
r59667 r61204 14 14 15 15 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 16 $header_alt_text = sprintf( 17 /* translators: %s: Version number. */ 18 __( 'WordPress %s' ), 19 $display_version 20 ); 16 21 17 22 require_once ABSPATH . 'wp-admin/admin-header.php'; … … 20 25 21 26 <div class="about__header"> 27 <div class="about__header-image"> 28 <img src="images/about-release-logo.svg?ver=6.9" alt="<?php echo esc_attr( $header_alt_text ); ?>" /> 29 </div> 30 22 31 <div class="about__header-title"> 23 32 <h1>
Note: See TracChangeset
for help on using the changeset viewer.