├── wp-content ├── index.php ├── themes │ ├── index.php │ ├── twentytwentytwo │ │ ├── templates │ │ │ ├── blank.html │ │ │ ├── page-large-header.html │ │ │ └── 404.html │ │ ├── screenshot.png │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── ducks.jpg │ │ │ │ ├── icon-bird.jpg │ │ │ │ ├── bird-on-black.jpg │ │ │ │ ├── bird-on-gray.jpg │ │ │ │ ├── bird-on-green.jpg │ │ │ │ ├── divider-black.png │ │ │ │ ├── divider-white.png │ │ │ │ ├── bird-on-salmon.jpg │ │ │ │ ├── icon-binoculars.png │ │ │ │ ├── flight-path-on-gray-a.jpg │ │ │ │ ├── flight-path-on-gray-b.jpg │ │ │ │ ├── flight-path-on-gray-c.jpg │ │ │ │ ├── flight-path-on-salmon.jpg │ │ │ │ ├── flight-path-on-transparent-a.png │ │ │ │ ├── flight-path-on-transparent-b.png │ │ │ │ ├── flight-path-on-transparent-c.png │ │ │ │ └── flight-path-on-transparent-d.png │ │ │ ├── videos │ │ │ │ └── birds.mp4 │ │ │ └── fonts │ │ │ │ ├── inter │ │ │ │ └── Inter.ttf │ │ │ │ ├── dm-sans │ │ │ │ ├── DMSans-Bold.ttf │ │ │ │ ├── DMSans-Italic.ttf │ │ │ │ ├── DMSans-Regular.ttf │ │ │ │ └── DMSans-BoldItalic.ttf │ │ │ │ ├── ibm-plex │ │ │ │ ├── IBMPlexMono-Bold.woff2 │ │ │ │ ├── IBMPlexMono-Text.woff2 │ │ │ │ ├── IBMPlexSans-Light.woff2 │ │ │ │ ├── IBMPlexMono-BoldItalic.woff2 │ │ │ │ ├── IBMPlexMono-TextItalic.woff2 │ │ │ │ ├── IBMPlexSans-ExtraLight.woff2 │ │ │ │ ├── IBMPlexSans-LightItalic.woff2 │ │ │ │ └── IBMPlexSans-ExtraLightItalic.woff2 │ │ │ │ ├── SourceSerif4Variable-Italic.otf.woff2 │ │ │ │ ├── SourceSerif4Variable-Italic.ttf.woff2 │ │ │ │ ├── SourceSerif4Variable-Roman.otf.woff2 │ │ │ │ ├── SourceSerif4Variable-Roman.ttf.woff2 │ │ │ │ └── source-serif-pro │ │ │ │ ├── SourceSerif4Variable-Roman.otf.woff2 │ │ │ │ ├── SourceSerif4Variable-Roman.ttf.woff2 │ │ │ │ ├── SourceSerif4Variable-Italic.otf.woff2 │ │ │ │ └── SourceSerif4Variable-Italic.ttf.woff2 │ │ ├── index.php │ │ └── parts │ │ │ └── footer.html │ ├── twentytwentythree │ │ ├── parts │ │ │ ├── footer.html │ │ │ ├── post-meta.html │ │ │ └── comments.html │ │ ├── templates │ │ │ ├── blank.html │ │ │ └── 404.html │ │ ├── screenshot.png │ │ └── assets │ │ │ └── fonts │ │ │ ├── dm-sans │ │ │ ├── DMSans-Bold.woff2 │ │ │ ├── DMSans-Regular.woff2 │ │ │ ├── DMSans-Bold-Italic.woff2 │ │ │ └── DMSans-Regular-Italic.woff2 │ │ │ ├── ibm-plex-mono │ │ │ ├── IBMPlexMono-Bold.woff2 │ │ │ ├── IBMPlexMono-Italic.woff2 │ │ │ ├── IBMPlexMono-Light.woff2 │ │ │ └── IBMPlexMono-Regular.woff2 │ │ │ ├── inter │ │ │ └── Inter-VariableFont_slnt,wght.ttf │ │ │ └── source-serif-pro │ │ │ ├── SourceSerif4Variable-Roman.otf.woff2 │ │ │ ├── SourceSerif4Variable-Roman.ttf.woff2 │ │ │ ├── SourceSerif4Variable-Italic.otf.woff2 │ │ │ └── SourceSerif4Variable-Italic.ttf.woff2 │ └── twentytwentyone │ │ ├── assets │ │ ├── sass │ │ │ ├── 01-settings │ │ │ │ └── fonts.scss │ │ │ ├── 05-blocks │ │ │ │ ├── latest-comments │ │ │ │ │ └── _editor.scss │ │ │ │ ├── verse │ │ │ │ │ ├── _editor.scss │ │ │ │ │ └── _style.scss │ │ │ │ ├── preformatted │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _editor.scss │ │ │ │ ├── tag-clould │ │ │ │ │ ├── _editor.scss │ │ │ │ │ └── _style.scss │ │ │ │ ├── audio │ │ │ │ │ └── _style.scss │ │ │ │ ├── gallery │ │ │ │ │ └── _editor.scss │ │ │ │ ├── paragraph │ │ │ │ │ ├── _editor.scss │ │ │ │ │ └── _style.scss │ │ │ │ ├── _config.scss │ │ │ │ ├── query-loop │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _editor.scss │ │ │ │ ├── html │ │ │ │ │ └── _editor.scss │ │ │ │ ├── file │ │ │ │ │ └── _style.scss │ │ │ │ ├── code │ │ │ │ │ ├── _editor.scss │ │ │ │ │ └── _style.scss │ │ │ │ ├── video │ │ │ │ │ └── _style.scss │ │ │ │ └── social-icons │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _editor.scss │ │ │ ├── 06-components │ │ │ │ ├── search.scss │ │ │ │ └── 404.scss │ │ │ ├── 04-elements │ │ │ │ └── misc.scss │ │ │ └── 07-utilities │ │ │ │ └── measure.scss │ │ ├── images │ │ │ ├── Reading.jpg │ │ │ ├── Daffodils.jpg │ │ │ ├── self-portrait-1885.jpg │ │ │ ├── playing-in-the-sand.jpg │ │ │ ├── young-woman-in-mauve.jpg │ │ │ ├── in-the-bois-de-boulogne.jpg │ │ │ ├── the-garden-at-bougival-1884.jpg │ │ │ ├── villa-with-orange-trees-nice.jpg │ │ │ └── roses-tremieres-hollyhocks-1884.jpg │ │ └── css │ │ │ ├── style-editor-customizer.css │ │ │ └── custom-color-overrides.css │ │ ├── screenshot.png │ │ ├── .stylelintignore │ │ ├── template-parts │ │ ├── header │ │ │ └── entry-header.php │ │ ├── excerpt │ │ │ ├── excerpt.php │ │ │ ├── excerpt-aside.php │ │ │ └── excerpt-status.php │ │ └── footer │ │ │ └── footer-widgets.php │ │ └── postcss.config.js └── plugins │ ├── akismet │ ├── index.php │ ├── _inc │ │ └── img │ │ │ ├── logo-a-2x.png │ │ │ └── logo-full-2x.png │ └── views │ │ ├── title.php │ │ ├── activate.php │ │ ├── setup.php │ │ └── predefined.php │ └── index.php ├── wp-includes ├── blocks │ ├── spacer │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── code │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor.css │ │ ├── editor-rtl.css │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── theme.css │ │ ├── theme-rtl.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── group │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ ├── style-rtl.css │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme-rtl.css │ │ └── theme.css │ ├── archives │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ ├── editor-rtl.css │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── site-title │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style-rtl.css │ │ ├── style.css │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor-rtl.css │ │ └── editor.css │ ├── post-date │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── query-title │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── comments-title │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── site-tagline │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── avatar │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ ├── style-rtl.css │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── comment-content │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── file │ │ ├── view.asset.php │ │ └── view.min.asset.php │ ├── list │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── categories │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ ├── editor-rtl.css │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── navigation │ │ ├── view.asset.php │ │ ├── view-modal.asset.php │ │ ├── view.min.asset.php │ │ └── view-modal.min.asset.php │ ├── post-excerpt │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ ├── editor-rtl.css │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── text-columns │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── template-part │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme.css │ │ └── theme-rtl.css │ ├── post-template │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── verse │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── post-title │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── preformatted │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── post-terms │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── search │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme-rtl.css │ │ ├── theme.css │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── gallery │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme-rtl.css │ │ └── theme.css │ ├── heading │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── post-comments-form │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── columns │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── audio │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── style.css │ │ ├── style-rtl.css │ │ ├── theme-rtl.css │ │ ├── theme.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── embed │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme-rtl.css │ │ └── theme.css │ ├── image │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme-rtl.css │ │ └── theme.css │ ├── video │ │ ├── theme.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme-rtl.css │ │ ├── theme.css │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── navigation-link │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── query-pagination-numbers │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── table │ │ ├── theme-rtl.min.css │ │ ├── theme.min.css │ │ ├── theme.css │ │ └── theme-rtl.css │ ├── separator │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── editor.css │ │ ├── editor-rtl.css │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── theme-rtl.min.css │ │ └── theme.min.css │ ├── comments-pagination-numbers │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor-rtl.css │ │ └── editor.css │ ├── pullquote │ │ ├── editor.min.css │ │ ├── editor-rtl.min.css │ │ ├── theme-rtl.min.css │ │ ├── theme.min.css │ │ ├── editor.css │ │ ├── editor-rtl.css │ │ ├── theme.css │ │ └── theme-rtl.css │ ├── rss │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── read-more │ │ ├── style.min.css │ │ ├── style-rtl.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── post-author │ │ ├── style-rtl.min.css │ │ └── style.min.css │ ├── page-list │ │ ├── style-rtl.min.css │ │ ├── style.min.css │ │ ├── style.css │ │ └── style-rtl.css │ ├── paragraph │ │ ├── editor-rtl.min.css │ │ ├── editor.min.css │ │ ├── editor.css │ │ └── editor-rtl.css │ ├── query.php │ ├── social-link │ │ ├── editor.min.css │ │ └── editor-rtl.min.css │ ├── pattern │ │ └── block.json │ ├── widget-group │ │ └── block.json │ ├── site-logo │ │ ├── style.min.css │ │ └── style-rtl.min.css │ └── latest-posts │ │ ├── editor.min.css │ │ └── editor-rtl.min.css ├── css │ ├── dist │ │ └── block-library │ │ │ ├── elements.min.css │ │ │ ├── elements-rtl.min.css │ │ │ ├── elements-rtl.css │ │ │ ├── elements.css │ │ │ ├── editor-elements.min.css │ │ │ ├── editor-elements-rtl.min.css │ │ │ ├── editor-elements.css │ │ │ ├── editor-elements-rtl.css │ │ │ ├── classic.min.css │ │ │ ├── classic-rtl.min.css │ │ │ ├── classic.css │ │ │ └── classic-rtl.css │ └── classic-themes.min.css ├── js │ ├── tw-sack.js │ ├── jcrop │ │ └── Jcrop.gif │ ├── crop │ │ ├── marqueeVert.gif │ │ └── marqueeHoriz.gif │ ├── thickbox │ │ ├── macFFBgHack.png │ │ └── loadingAnimation.gif │ ├── mediaelement │ │ └── mejs-controls.png │ ├── imgareaselect │ │ ├── border-anim-h.gif │ │ └── border-anim-v.gif │ ├── tinymce │ │ ├── skins │ │ │ ├── lightgray │ │ │ │ ├── img │ │ │ │ │ ├── trans.gif │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ └── object.gif │ │ │ │ └── fonts │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ ├── tinymce.woff │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ └── tinymce-small.woff │ │ │ └── wordpress │ │ │ │ └── images │ │ │ │ ├── audio.png │ │ │ │ ├── more.png │ │ │ │ ├── video.png │ │ │ │ ├── gallery.png │ │ │ │ ├── more-2x.png │ │ │ │ ├── embedded.png │ │ │ │ ├── gallery-2x.png │ │ │ │ ├── pagebreak.png │ │ │ │ ├── dashicon-no.png │ │ │ │ ├── pagebreak-2x.png │ │ │ │ ├── dashicon-edit.png │ │ │ │ ├── playlist-audio.png │ │ │ │ └── playlist-video.png │ │ └── plugins │ │ │ └── hr │ │ │ └── plugin.min.js │ ├── wpdialog.min.js │ ├── zxcvbn-async.min.js │ └── dist │ │ ├── vendor │ │ ├── wp-polyfill-node-contains.min.js │ │ ├── wp-polyfill-element-closest.min.js │ │ └── wp-polyfill-element-closest.js │ │ └── warning.min.js ├── images │ ├── rss.png │ ├── xit.gif │ ├── blank.gif │ ├── rss-2x.png │ ├── spinner.gif │ ├── wpicons.png │ ├── wpspin.gif │ ├── xit-2x.gif │ ├── wpspin-2x.gif │ ├── crystal │ │ ├── code.png │ │ ├── text.png │ │ ├── audio.png │ │ ├── video.png │ │ ├── archive.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ ├── spreadsheet.png │ │ └── license.txt │ ├── down_arrow.gif │ ├── media │ │ ├── audio.png │ │ ├── code.png │ │ ├── text.png │ │ ├── video.png │ │ ├── archive.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ └── spreadsheet.png │ ├── spinner-2x.gif │ ├── toggle-arrow.png │ ├── w-logo-blue.png │ ├── wlw │ │ ├── wp-icon.png │ │ ├── wp-comments.png │ │ └── wp-watermark.png │ ├── wpicons-2x.png │ ├── down_arrow-2x.gif │ ├── uploader-icons.png │ ├── admin-bar-sprite.png │ ├── icon-pointer-flag.png │ ├── smilies │ │ ├── frownie.png │ │ ├── icon_cool.gif │ │ ├── icon_cry.gif │ │ ├── icon_eek.gif │ │ ├── icon_evil.gif │ │ ├── icon_idea.gif │ │ ├── icon_lol.gif │ │ ├── icon_mad.gif │ │ ├── icon_razz.gif │ │ ├── icon_sad.gif │ │ ├── icon_wink.gif │ │ ├── mrgreen.png │ │ ├── rolleyes.png │ │ ├── icon_arrow.gif │ │ ├── icon_smile.gif │ │ ├── icon_biggrin.gif │ │ ├── icon_confused.gif │ │ ├── icon_exclaim.gif │ │ ├── icon_mrgreen.gif │ │ ├── icon_neutral.gif │ │ ├── icon_question.gif │ │ ├── icon_redface.gif │ │ ├── icon_rolleyes.gif │ │ ├── icon_surprised.gif │ │ ├── icon_twisted.gif │ │ └── simple-smile.png │ ├── toggle-arrow-2x.png │ ├── uploader-icons-2x.png │ ├── admin-bar-sprite-2x.png │ ├── arrow-pointer-blue.png │ ├── arrow-pointer-blue-2x.png │ ├── icon-pointer-flag-2x.png │ └── w-logo-blue-white-bg.png ├── fonts │ ├── dashicons.eot │ ├── dashicons.ttf │ ├── dashicons.woff │ └── dashicons.woff2 ├── assets │ ├── script-loader-react-refresh-runtime.php │ ├── script-loader-react-refresh-runtime.min.php │ ├── script-loader-react-refresh-entry.php │ └── script-loader-react-refresh-entry.min.php ├── sodium_compat │ ├── namespaced │ │ ├── File.php │ │ ├── Compat.php │ │ ├── Crypto.php │ │ └── Core │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── Ed25519.php │ │ │ ├── HSalsa20.php │ │ │ ├── Poly1305.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Xsalsa20.php │ │ │ ├── Curve25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── XChaCha20.php │ │ │ ├── ChaCha20 │ │ │ ├── Ctx.php │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519 │ │ │ ├── Fe.php │ │ │ ├── H.php │ │ │ └── Ge │ │ │ │ ├── P2.php │ │ │ │ ├── P3.php │ │ │ │ ├── P1p1.php │ │ │ │ ├── Cached.php │ │ │ │ └── Precomp.php │ │ │ └── Poly1305 │ │ │ └── State.php │ └── src │ │ ├── SodiumException.php │ │ ├── Core │ │ └── Curve25519 │ │ │ └── README.md │ │ └── Core32 │ │ ├── Curve25519 │ │ └── README.md │ │ └── Util.php ├── locale.php ├── registration.php ├── registration-functions.php ├── session.php ├── rss-functions.php ├── Requests │ ├── library │ │ └── Requests.php │ └── src │ │ └── Exception │ │ └── Transport.php ├── block-i18n.json ├── embed-template.php ├── class.wp-styles.php ├── class.wp-scripts.php ├── class-http.php ├── class.wp-dependencies.php └── date.php ├── wp-cli.phar ├── wp-admin ├── images │ ├── no.png │ ├── se.png │ ├── list.png │ ├── mask.png │ ├── menu.png │ ├── sort.gif │ ├── stars.png │ ├── wheel.png │ ├── xit.gif │ ├── yes.png │ ├── arrows.png │ ├── browser.png │ ├── generic.png │ ├── icons32.png │ ├── list-2x.png │ ├── loading.gif │ ├── marker.png │ ├── menu-2x.png │ ├── menu-vs.png │ ├── resize.gif │ ├── sort-2x.gif │ ├── spinner.gif │ ├── xit-2x.gif │ ├── align-left.png │ ├── align-none.png │ ├── arrows-2x.png │ ├── bubble_bg.gif │ ├── icons32-2x.png │ ├── icons32-vs.png │ ├── menu-vs-2x.png │ ├── resize-2x.gif │ ├── resize-rtl.gif │ ├── spinner-2x.gif │ ├── stars-2x.png │ ├── align-center.png │ ├── align-right.png │ ├── browser-rtl.png │ ├── bubble_bg-2x.gif │ ├── date-button.gif │ ├── media-button.png │ ├── post-formats.png │ ├── w-logo-blue.png │ ├── w-logo-white.png │ ├── wpspin_light.gif │ ├── about-texture.png │ ├── align-center-2x.png │ ├── align-left-2x.png │ ├── align-none-2x.png │ ├── align-right-2x.png │ ├── date-button-2x.gif │ ├── icons32-vs-2x.png │ ├── imgedit-icons.png │ ├── media-button-2x.png │ ├── post-formats-vs.png │ ├── post-formats32.png │ ├── resize-rtl-2x.gif │ ├── wordpress-logo.png │ ├── wpspin_light-2x.gif │ ├── imgedit-icons-2x.png │ ├── post-formats32-vs.png │ ├── comment-grey-bubble.png │ ├── media-button-image.gif │ ├── media-button-music.gif │ ├── media-button-other.gif │ ├── media-button-video.gif │ └── comment-grey-bubble-2x.png ├── css │ ├── colors │ │ ├── sunrise │ │ │ └── colors.scss │ │ ├── coffee │ │ │ └── colors.scss │ │ ├── ectoplasm │ │ │ └── colors.scss │ │ ├── midnight │ │ │ └── colors.scss │ │ ├── ocean │ │ │ └── colors.scss │ │ ├── modern │ │ │ └── colors.scss │ │ └── blue │ │ │ └── colors.scss │ └── wp-admin.css ├── ms-admin.php ├── ms-edit.php ├── ms-sites.php ├── ms-users.php ├── ms-options.php ├── ms-themes.php ├── ms-upgrade-network.php ├── network │ ├── about.php │ ├── credits.php │ ├── plugins.php │ ├── privacy.php │ ├── setup.php │ ├── freedoms.php │ ├── profile.php │ ├── update-core.php │ ├── user-edit.php │ ├── theme-editor.php │ ├── plugin-editor.php │ ├── plugin-install.php │ └── theme-install.php ├── user │ ├── index.php │ ├── profile.php │ ├── user-edit.php │ ├── about.php │ ├── credits.php │ ├── privacy.php │ └── freedoms.php ├── moderation.php ├── profile.php ├── upgrade-functions.php └── js │ ├── language-chooser.min.js │ └── xfn.min.js └── wp-blog-header.php /wp-content/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/comments-title/editor.css: -------------------------------------------------------------------------------- 1 | .wp-block-comments-title.has-background{ 2 | padding:inherit; 3 | } -------------------------------------------------------------------------------- /wp-includes/blocks/group/theme-rtl.css: -------------------------------------------------------------------------------- 1 | :where(.wp-block-group.has-background){ 2 | padding:1.25em 2.375em; 3 | } -------------------------------------------------------------------------------- /wp-includes/blocks/group/theme.css: -------------------------------------------------------------------------------- 1 | :where(.wp-block-group.has-background){ 2 | padding:1.25em 2.375em; 3 | } -------------------------------------------------------------------------------- /wp-admin/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/list.png -------------------------------------------------------------------------------- /wp-admin/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/mask.png -------------------------------------------------------------------------------- /wp-admin/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/menu.png -------------------------------------------------------------------------------- /wp-admin/images/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/sort.gif -------------------------------------------------------------------------------- /wp-admin/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/stars.png -------------------------------------------------------------------------------- /wp-admin/images/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/wheel.png -------------------------------------------------------------------------------- /wp-admin/images/xit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/xit.gif -------------------------------------------------------------------------------- /wp-admin/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/yes.png -------------------------------------------------------------------------------- /wp-includes/blocks/comments-title/editor-rtl.css: -------------------------------------------------------------------------------- 1 | .wp-block-comments-title.has-background{ 2 | padding:inherit; 3 | } -------------------------------------------------------------------------------- /wp-includes/blocks/site-tagline/editor-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-site-tagline__placeholder{border:1px dashed;padding:1em 0} -------------------------------------------------------------------------------- /wp-includes/blocks/site-tagline/editor.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-site-tagline__placeholder{border:1px dashed;padding:1em 0} -------------------------------------------------------------------------------- /wp-includes/js/tw-sack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tw-sack.js -------------------------------------------------------------------------------- /wp-admin/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/arrows.png -------------------------------------------------------------------------------- /wp-admin/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/browser.png -------------------------------------------------------------------------------- /wp-admin/images/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/generic.png -------------------------------------------------------------------------------- /wp-admin/images/icons32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/icons32.png -------------------------------------------------------------------------------- /wp-admin/images/list-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/list-2x.png -------------------------------------------------------------------------------- /wp-admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/loading.gif -------------------------------------------------------------------------------- /wp-admin/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/marker.png -------------------------------------------------------------------------------- /wp-admin/images/menu-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/menu-2x.png -------------------------------------------------------------------------------- /wp-admin/images/menu-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/menu-vs.png -------------------------------------------------------------------------------- /wp-admin/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/resize.gif -------------------------------------------------------------------------------- /wp-admin/images/sort-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/sort-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/spinner.gif -------------------------------------------------------------------------------- /wp-admin/images/xit-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/xit-2x.gif -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/parts/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/parts/post-meta.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/blank.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-includes/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/rss.png -------------------------------------------------------------------------------- /wp-includes/images/xit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/xit.gif -------------------------------------------------------------------------------- /wp-admin/images/align-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-left.png -------------------------------------------------------------------------------- /wp-admin/images/align-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-none.png -------------------------------------------------------------------------------- /wp-admin/images/arrows-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/arrows-2x.png -------------------------------------------------------------------------------- /wp-admin/images/bubble_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/bubble_bg.gif -------------------------------------------------------------------------------- /wp-admin/images/icons32-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/icons32-2x.png -------------------------------------------------------------------------------- /wp-admin/images/icons32-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/icons32-vs.png -------------------------------------------------------------------------------- /wp-admin/images/menu-vs-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/menu-vs-2x.png -------------------------------------------------------------------------------- /wp-admin/images/resize-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/resize-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/resize-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/resize-rtl.gif -------------------------------------------------------------------------------- /wp-admin/images/spinner-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/spinner-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/stars-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/stars-2x.png -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/parts/comments.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/avatar/style.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-avatar{box-sizing:border-box}.wp-block-avatar.aligncenter{text-align:center} -------------------------------------------------------------------------------- /wp-includes/blocks/comment-content/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | .comment-awaiting-moderation{display:block;font-size:.875em;line-height:1.5} -------------------------------------------------------------------------------- /wp-includes/blocks/comment-content/style.min.css: -------------------------------------------------------------------------------- 1 | .comment-awaiting-moderation{display:block;font-size:.875em;line-height:1.5} -------------------------------------------------------------------------------- /wp-includes/blocks/file/view.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '30e42a0eeaa76bba673e'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/list/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/blocks/list/style.min.css: -------------------------------------------------------------------------------- 1 | ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/blank.gif -------------------------------------------------------------------------------- /wp-includes/images/rss-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/rss-2x.png -------------------------------------------------------------------------------- /wp-includes/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/spinner.gif -------------------------------------------------------------------------------- /wp-includes/images/wpicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wpicons.png -------------------------------------------------------------------------------- /wp-includes/images/wpspin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wpspin.gif -------------------------------------------------------------------------------- /wp-includes/images/xit-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/xit-2x.gif -------------------------------------------------------------------------------- /wp-includes/js/jcrop/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/jcrop/Jcrop.gif -------------------------------------------------------------------------------- /wp-admin/images/align-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-center.png -------------------------------------------------------------------------------- /wp-admin/images/align-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-right.png -------------------------------------------------------------------------------- /wp-admin/images/browser-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/browser-rtl.png -------------------------------------------------------------------------------- /wp-admin/images/bubble_bg-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/bubble_bg-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/date-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/date-button.gif -------------------------------------------------------------------------------- /wp-admin/images/media-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/media-button.png -------------------------------------------------------------------------------- /wp-admin/images/post-formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/post-formats.png -------------------------------------------------------------------------------- /wp-admin/images/w-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/w-logo-blue.png -------------------------------------------------------------------------------- /wp-admin/images/w-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/w-logo-white.png -------------------------------------------------------------------------------- /wp-admin/images/wpspin_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/wpspin_light.gif -------------------------------------------------------------------------------- /wp-includes/blocks/archives/style.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-archives{box-sizing:border-box}.wp-block-archives-dropdown label{display:block} -------------------------------------------------------------------------------- /wp-includes/blocks/avatar/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-avatar{box-sizing:border-box}.wp-block-avatar.aligncenter{text-align:center} -------------------------------------------------------------------------------- /wp-includes/blocks/categories/editor.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-categories ul{padding-left:2.5em}.wp-block-categories ul ul{margin-top:6px} -------------------------------------------------------------------------------- /wp-includes/blocks/file/view.min.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '2a20786ca914ea00891f'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/navigation/view.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '27be0e10166a8144ec05'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/post-excerpt/editor.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline{display:inline-block} -------------------------------------------------------------------------------- /wp-includes/blocks/site-tagline/editor.css: -------------------------------------------------------------------------------- 1 | .wp-block-site-tagline__placeholder{ 2 | border:1px dashed; 3 | padding:1em 0; 4 | } -------------------------------------------------------------------------------- /wp-includes/blocks/text-columns/editor.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-text-columns .block-editor-rich-text__editable:focus{outline:1px solid #ddd} -------------------------------------------------------------------------------- /wp-includes/fonts/dashicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/fonts/dashicons.eot -------------------------------------------------------------------------------- /wp-includes/fonts/dashicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/fonts/dashicons.ttf -------------------------------------------------------------------------------- /wp-includes/fonts/dashicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/fonts/dashicons.woff -------------------------------------------------------------------------------- /wp-includes/images/wpspin-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wpspin-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/about-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/about-texture.png -------------------------------------------------------------------------------- /wp-admin/images/align-center-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-center-2x.png -------------------------------------------------------------------------------- /wp-admin/images/align-left-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-left-2x.png -------------------------------------------------------------------------------- /wp-admin/images/align-none-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-none-2x.png -------------------------------------------------------------------------------- /wp-admin/images/align-right-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/align-right-2x.png -------------------------------------------------------------------------------- /wp-admin/images/date-button-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/date-button-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/icons32-vs-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/icons32-vs-2x.png -------------------------------------------------------------------------------- /wp-admin/images/imgedit-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/imgedit-icons.png -------------------------------------------------------------------------------- /wp-admin/images/media-button-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/media-button-2x.png -------------------------------------------------------------------------------- /wp-admin/images/post-formats-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/post-formats-vs.png -------------------------------------------------------------------------------- /wp-admin/images/post-formats32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/post-formats32.png -------------------------------------------------------------------------------- /wp-admin/images/resize-rtl-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/resize-rtl-2x.gif -------------------------------------------------------------------------------- /wp-admin/images/wordpress-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/wordpress-logo.png -------------------------------------------------------------------------------- /wp-admin/images/wpspin_light-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/wpspin_light-2x.gif -------------------------------------------------------------------------------- /wp-content/themes/twentytwentyone/assets/sass/01-settings/fonts.scss: -------------------------------------------------------------------------------- 1 | // Do we need to serve a font? Add the @font-face styles here. 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/archives/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-archives{box-sizing:border-box}.wp-block-archives-dropdown label{display:block} -------------------------------------------------------------------------------- /wp-includes/blocks/categories/editor-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-categories ul{padding-right:2.5em}.wp-block-categories ul ul{margin-top:6px} -------------------------------------------------------------------------------- /wp-includes/blocks/navigation/view-modal.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '254ff34d006ddc355634'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/navigation/view.min.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'c24330f635f5cb9d5e0e'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/post-excerpt/editor-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline{display:inline-block} -------------------------------------------------------------------------------- /wp-includes/blocks/site-tagline/editor-rtl.css: -------------------------------------------------------------------------------- 1 | .wp-block-site-tagline__placeholder{ 2 | border:1px dashed; 3 | padding:1em 0; 4 | } -------------------------------------------------------------------------------- /wp-includes/blocks/template-part/theme.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-template-part.has-background{margin-bottom:0;margin-top:0;padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/blocks/text-columns/editor-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-text-columns .block-editor-rich-text__editable:focus{outline:1px solid #ddd} -------------------------------------------------------------------------------- /wp-includes/css/dist/block-library/editor-elements.min.css: -------------------------------------------------------------------------------- 1 | .wp-element-button{cursor:revert}.wp-element-button[role=textbox]{cursor:text} -------------------------------------------------------------------------------- /wp-includes/fonts/dashicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/fonts/dashicons.woff2 -------------------------------------------------------------------------------- /wp-includes/images/crystal/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/code.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/text.png -------------------------------------------------------------------------------- /wp-includes/images/down_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/down_arrow.gif -------------------------------------------------------------------------------- /wp-includes/images/media/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/audio.png -------------------------------------------------------------------------------- /wp-includes/images/media/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/code.png -------------------------------------------------------------------------------- /wp-includes/images/media/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/text.png -------------------------------------------------------------------------------- /wp-includes/images/media/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/video.png -------------------------------------------------------------------------------- /wp-includes/images/spinner-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/spinner-2x.gif -------------------------------------------------------------------------------- /wp-includes/images/toggle-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/toggle-arrow.png -------------------------------------------------------------------------------- /wp-includes/images/w-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/w-logo-blue.png -------------------------------------------------------------------------------- /wp-includes/images/wlw/wp-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wlw/wp-icon.png -------------------------------------------------------------------------------- /wp-includes/images/wpicons-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wpicons-2x.png -------------------------------------------------------------------------------- /wp-includes/js/crop/marqueeVert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/crop/marqueeVert.gif -------------------------------------------------------------------------------- /wp-admin/images/imgedit-icons-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/imgedit-icons-2x.png -------------------------------------------------------------------------------- /wp-admin/images/post-formats32-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/post-formats32-vs.png -------------------------------------------------------------------------------- /wp-includes/blocks/navigation/view-modal.min.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'f51363b18f0497ec84da'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/post-excerpt/editor.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline{ 2 | display:inline-block; 3 | } -------------------------------------------------------------------------------- /wp-includes/blocks/post-template/editor.min.css: -------------------------------------------------------------------------------- 1 | .editor-styles-wrapper ul.wp-block-post-template{list-style:none;margin-left:0;padding-left:0} -------------------------------------------------------------------------------- /wp-includes/blocks/template-part/theme-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-template-part.has-background{margin-bottom:0;margin-top:0;padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/blocks/text-columns/editor.css: -------------------------------------------------------------------------------- 1 | .wp-block-text-columns .block-editor-rich-text__editable:focus{ 2 | outline:1px solid #ddd; 3 | } -------------------------------------------------------------------------------- /wp-includes/blocks/verse/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | pre.wp-block-verse{overflow:auto;white-space:pre-wrap}:where(pre.wp-block-verse){font-family:inherit} -------------------------------------------------------------------------------- /wp-includes/blocks/verse/style.min.css: -------------------------------------------------------------------------------- 1 | pre.wp-block-verse{overflow:auto;white-space:pre-wrap}:where(pre.wp-block-verse){font-family:inherit} -------------------------------------------------------------------------------- /wp-includes/css/dist/block-library/editor-elements-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-element-button{cursor:revert}.wp-element-button[role=textbox]{cursor:text} -------------------------------------------------------------------------------- /wp-includes/images/crystal/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/audio.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/video.png -------------------------------------------------------------------------------- /wp-includes/images/down_arrow-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/down_arrow-2x.gif -------------------------------------------------------------------------------- /wp-includes/images/media/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/archive.png -------------------------------------------------------------------------------- /wp-includes/images/media/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/default.png -------------------------------------------------------------------------------- /wp-includes/images/media/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/document.png -------------------------------------------------------------------------------- /wp-includes/images/uploader-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/uploader-icons.png -------------------------------------------------------------------------------- /wp-includes/js/crop/marqueeHoriz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/crop/marqueeHoriz.gif -------------------------------------------------------------------------------- /wp-admin/images/comment-grey-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/comment-grey-bubble.png -------------------------------------------------------------------------------- /wp-admin/images/media-button-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/media-button-image.gif -------------------------------------------------------------------------------- /wp-admin/images/media-button-music.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/media-button-music.gif -------------------------------------------------------------------------------- /wp-admin/images/media-button-other.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/media-button-other.gif -------------------------------------------------------------------------------- /wp-admin/images/media-button-video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/media-button-video.gif -------------------------------------------------------------------------------- /wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_editor.scss: -------------------------------------------------------------------------------- 1 | .wp-block-latest-comments { 2 | padding-left: 0; 3 | } 4 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_editor.scss: -------------------------------------------------------------------------------- 1 | pre.wp-block-verse { 2 | padding: 0; 3 | color: currentColor; 4 | } 5 | -------------------------------------------------------------------------------- /wp-includes/assets/script-loader-react-refresh-runtime.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'd4cdced5a2afff4a8cc2'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/comment-content/style.css: -------------------------------------------------------------------------------- 1 | .comment-awaiting-moderation{ 2 | display:block; 3 | font-size:.875em; 4 | line-height:1.5; 5 | } -------------------------------------------------------------------------------- /wp-includes/blocks/post-excerpt/editor-rtl.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-excerpt .wp-block-post-excerpt__excerpt.is-inline{ 2 | display:inline-block; 3 | } -------------------------------------------------------------------------------- /wp-includes/blocks/post-template/editor-rtl.min.css: -------------------------------------------------------------------------------- 1 | .editor-styles-wrapper ul.wp-block-post-template{list-style:none;margin-right:0;padding-right:0} -------------------------------------------------------------------------------- /wp-includes/blocks/text-columns/editor-rtl.css: -------------------------------------------------------------------------------- 1 | .wp-block-text-columns .block-editor-rich-text__editable:focus{ 2 | outline:1px solid #ddd; 3 | } -------------------------------------------------------------------------------- /wp-includes/images/admin-bar-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/admin-bar-sprite.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/archive.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/default.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/document.png -------------------------------------------------------------------------------- /wp-includes/images/icon-pointer-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/icon-pointer-flag.png -------------------------------------------------------------------------------- /wp-includes/images/media/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/interactive.png -------------------------------------------------------------------------------- /wp-includes/images/media/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/media/spreadsheet.png -------------------------------------------------------------------------------- /wp-includes/images/smilies/frownie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/frownie.png -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_cool.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_cry.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_eek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_eek.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_evil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_evil.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_idea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_idea.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_lol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_lol.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_mad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_mad.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_razz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_razz.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_sad.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_wink.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/mrgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/mrgreen.png -------------------------------------------------------------------------------- /wp-includes/images/smilies/rolleyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/rolleyes.png -------------------------------------------------------------------------------- /wp-includes/images/toggle-arrow-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/toggle-arrow-2x.png -------------------------------------------------------------------------------- /wp-includes/images/uploader-icons-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/uploader-icons-2x.png -------------------------------------------------------------------------------- /wp-includes/images/wlw/wp-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wlw/wp-comments.png -------------------------------------------------------------------------------- /wp-includes/images/wlw/wp-watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/wlw/wp-watermark.png -------------------------------------------------------------------------------- /wp-includes/js/thickbox/macFFBgHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/thickbox/macFFBgHack.png -------------------------------------------------------------------------------- /wp-admin/images/comment-grey-bubble-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-admin/images/comment-grey-bubble-2x.png -------------------------------------------------------------------------------- /wp-includes/assets/script-loader-react-refresh-runtime.min.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'd4cdced5a2afff4a8cc2'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/avatar/style.css: -------------------------------------------------------------------------------- 1 | .wp-block-avatar{ 2 | box-sizing:border-box; 3 | } 4 | .wp-block-avatar.aligncenter{ 5 | text-align:center; 6 | } -------------------------------------------------------------------------------- /wp-includes/blocks/code/theme.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em} -------------------------------------------------------------------------------- /wp-includes/blocks/comment-content/style-rtl.css: -------------------------------------------------------------------------------- 1 | .comment-awaiting-moderation{ 2 | display:block; 3 | font-size:.875em; 4 | line-height:1.5; 5 | } -------------------------------------------------------------------------------- /wp-includes/blocks/list/style.css: -------------------------------------------------------------------------------- 1 | ol,ul{ 2 | box-sizing:border-box; 3 | } 4 | ol.has-background,ul.has-background{ 5 | padding:1.25em 2.375em; 6 | } -------------------------------------------------------------------------------- /wp-includes/blocks/post-title/style.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-title{box-sizing:border-box;word-break:break-word}.wp-block-post-title a{display:inline-block} -------------------------------------------------------------------------------- /wp-includes/blocks/preformatted/style.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-preformatted{white-space:pre-wrap}.wp-block-preformatted.has-background{padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/images/admin-bar-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/admin-bar-sprite-2x.png -------------------------------------------------------------------------------- /wp-includes/images/arrow-pointer-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/arrow-pointer-blue.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/interactive.png -------------------------------------------------------------------------------- /wp-includes/images/crystal/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/crystal/spreadsheet.png -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_arrow.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_smile.gif -------------------------------------------------------------------------------- /wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_style.scss: -------------------------------------------------------------------------------- 1 | .wp-block-verse { 2 | font-family: var(--entry-content--font-family); 3 | } 4 | -------------------------------------------------------------------------------- /wp-includes/blocks/avatar/style-rtl.css: -------------------------------------------------------------------------------- 1 | .wp-block-avatar{ 2 | box-sizing:border-box; 3 | } 4 | .wp-block-avatar.aligncenter{ 5 | text-align:center; 6 | } -------------------------------------------------------------------------------- /wp-includes/blocks/categories/editor.css: -------------------------------------------------------------------------------- 1 | .wp-block-categories ul{ 2 | padding-left:2.5em; 3 | } 4 | .wp-block-categories ul ul{ 5 | margin-top:6px; 6 | } -------------------------------------------------------------------------------- /wp-includes/blocks/code/theme-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em} -------------------------------------------------------------------------------- /wp-includes/blocks/list/style-rtl.css: -------------------------------------------------------------------------------- 1 | ol,ul{ 2 | box-sizing:border-box; 3 | } 4 | ol.has-background,ul.has-background{ 5 | padding:1.25em 2.375em; 6 | } -------------------------------------------------------------------------------- /wp-includes/blocks/post-title/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-title{box-sizing:border-box;word-break:break-word}.wp-block-post-title a{display:inline-block} -------------------------------------------------------------------------------- /wp-includes/blocks/preformatted/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-preformatted{white-space:pre-wrap}.wp-block-preformatted.has-background{padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/images/arrow-pointer-blue-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/arrow-pointer-blue-2x.png -------------------------------------------------------------------------------- /wp-includes/images/icon-pointer-flag-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/icon-pointer-flag-2x.png -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_biggrin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_biggrin.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_confused.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_confused.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_exclaim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_exclaim.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_mrgreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_mrgreen.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_neutral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_neutral.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_question.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_redface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_redface.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_rolleyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_rolleyes.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_surprised.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/icon_twisted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/icon_twisted.gif -------------------------------------------------------------------------------- /wp-includes/images/smilies/simple-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/smilies/simple-smile.png -------------------------------------------------------------------------------- /wp-includes/images/w-logo-blue-white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/images/w-logo-blue-white-bg.png -------------------------------------------------------------------------------- /wp-includes/js/mediaelement/mejs-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/mediaelement/mejs-controls.png -------------------------------------------------------------------------------- /wp-includes/js/thickbox/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/thickbox/loadingAnimation.gif -------------------------------------------------------------------------------- /wp-includes/sodium_compat/namespaced/File.php: -------------------------------------------------------------------------------- 1 | array('wp-react-refresh-runtime'), 'version' => '794dd7047e2302828128'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/gallery/theme.min.css: -------------------------------------------------------------------------------- 1 | .blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)} -------------------------------------------------------------------------------- /wp-includes/blocks/heading/style.min.css: -------------------------------------------------------------------------------- 1 | h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/blocks/post-template/editor-rtl.css: -------------------------------------------------------------------------------- 1 | .editor-styles-wrapper ul.wp-block-post-template{ 2 | list-style:none; 3 | margin-right:0; 4 | padding-right:0; 5 | } -------------------------------------------------------------------------------- /wp-includes/blocks/search/theme-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em} -------------------------------------------------------------------------------- /wp-includes/blocks/site-title/editor.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-site-title__placeholder{border:1px dashed;padding:1em 0}.editor-styles-wrapper .wp-block-site-title a{color:inherit} -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /wp-includes/sodium_compat/namespaced/Core/Util.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentyone/assets/sass/06-components/search.scss: -------------------------------------------------------------------------------- 1 | .search-no-results .page-content { 2 | margin-top: calc(3 * var(--global--spacing-vertical)); 3 | } 4 | -------------------------------------------------------------------------------- /wp-includes/assets/script-loader-react-refresh-entry.min.php: -------------------------------------------------------------------------------- 1 | array('wp-react-refresh-runtime'), 'version' => '794dd7047e2302828128'); 2 | -------------------------------------------------------------------------------- /wp-includes/blocks/code/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-code{box-sizing:border-box}.wp-block-code code{display:block;font-family:inherit;overflow-wrap:break-word;white-space:pre-wrap} -------------------------------------------------------------------------------- /wp-includes/blocks/code/style.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-code{box-sizing:border-box}.wp-block-code code{display:block;font-family:inherit;overflow-wrap:break-word;white-space:pre-wrap} -------------------------------------------------------------------------------- /wp-includes/blocks/gallery/theme-rtl.min.css: -------------------------------------------------------------------------------- 1 | .blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)} -------------------------------------------------------------------------------- /wp-includes/blocks/heading/style-rtl.min.css: -------------------------------------------------------------------------------- 1 | h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em} -------------------------------------------------------------------------------- /wp-includes/blocks/post-comments-form/editor.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-post-comments-form *{pointer-events:none}.wp-block-post-comments-form .block-editor-warning *{pointer-events:auto} -------------------------------------------------------------------------------- /wp-includes/blocks/site-title/editor-rtl.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-site-title__placeholder{border:1px dashed;padding:1em 0}.editor-styles-wrapper .wp-block-site-title a{color:inherit} -------------------------------------------------------------------------------- /wp-includes/blocks/verse/style.css: -------------------------------------------------------------------------------- 1 | pre.wp-block-verse{ 2 | overflow:auto; 3 | white-space:pre-wrap; 4 | } 5 | 6 | :where(pre.wp-block-verse){ 7 | font-family:inherit; 8 | } -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/wordpress/images/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/wordpress/images/audio.png -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/wordpress/images/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/wordpress/images/more.png -------------------------------------------------------------------------------- /wp-includes/js/tinymce/skins/wordpress/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/benchmarking-wordpress-6.2/master/wp-includes/js/tinymce/skins/wordpress/images/video.png -------------------------------------------------------------------------------- /wp-includes/sodium_compat/namespaced/Core/X25519.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |4 | wp-config.php' ); 8 | 9 | ?> 10 |
11 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_style.scss: -------------------------------------------------------------------------------- 1 | .wp-block-code { 2 | border-color: var(--global--color-border); 3 | border-radius: 0; 4 | border-style: solid; 5 | border-width: 0.1rem; 6 | padding: var(--global--spacing-unit); 7 | 8 | code { 9 | color: var(--global--color-primary); 10 | white-space: pre; 11 | overflow-x: auto; 12 | display: block; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /wp-content/themes/twentytwentythree/templates/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |