Changeset 223028
- Timestamp:
- 04/02/2024 08:10:08 PM (20 months ago)
- Location:
- twentynineteen/2.8
- Files:
-
- 17 edited
- 1 copied
-
. (copied) (copied from twentynineteen/2.7)
-
image.php (modified) (1 diff)
-
images/pattern_01.jpg (modified) (previous)
-
images/pattern_02.jpg (modified) (previous)
-
images/pattern_03.jpg (modified) (previous)
-
images/pattern_04.jpg (modified) (previous)
-
inc/color-patterns.php (modified) (2 diffs)
-
inc/template-functions.php (modified) (2 diffs)
-
package-lock.json (modified) (58 diffs)
-
package.json (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
-
sass/blocks/_blocks.scss (modified) (5 diffs)
-
screenshot.png (modified) (previous)
-
style-editor.css (modified) (34 diffs)
-
style-editor.scss (modified) (3 diffs)
-
style-rtl.css (modified) (6 diffs)
-
style.css (modified) (6 diffs)
-
style.scss (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
twentynineteen/2.8/image.php
r188109 r223028 33 33 * Filters the default twentynineteen image attachment size. 34 34 * 35 * @since Twenty Sixteen 1.035 * @since Twenty Nineteen 1.0 36 36 * 37 37 * @param string $image_size Image size. Default 'large'. -
twentynineteen/2.8/inc/color-patterns.php
r168448 r223028 73 73 * - featured image :before 74 74 * - featured image :before 75 * - post thumb mail :before76 * - post thumb mail :before75 * - post thumbnail :before 76 * - post thumbnail :before 77 77 * - Submenu 78 78 * - Sticky Post … … 213 213 * - blockquote 214 214 * - pullquote (solid color) 215 * - buttons 216 */ 217 .editor- block-list__layout .editor-block-list__block a,218 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),219 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline:hover .wp-block-button__link:not(.has-text-color),220 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline:focus.wp-block-button__link:not(.has-text-color),221 .editor-block-list__layout .editor-block-list__block .wp-block-button.is-style-outline:active .wp-block-button__link:not(.has-text-color),222 .editor- block-list__layout .editor-block-list__block .wp-block-file .wp-block-file__textlink{215 * - buttons, including buttons in the file and search blocks. 216 */ 217 .editor-styles-wrapper .wp-block a, 218 .editor-styles-wrapper .wp-block .wp-block-file .wp-block-file__textlink, /* Before 5.8 */ 219 .editor-styles-wrapper .wp-block .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color), /* Before 5.8 */ 220 .editor-styles-wrapper .wp-block.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color), 221 /* Before 5.8, the following hover style is needed to override the default color when the block is selected. */ 222 .editor-styles-wrapper .wp-block .wp-block-button.is-style-outline:hover .wp-block-button__link:not(.has-text-color) { 223 223 color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 224 224 } 225 225 226 .editor-block-list__layout .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large), 227 .editor-styles-wrapper .editor-block-list__layout .wp-block-freeform blockquote { 226 .editor-styles-wrapper .wp-block.wp-block-quote:not(.is-large):not(.is-style-large), 227 .editor-styles-wrapper .wp-block .wp-block-freeform blockquote, /* Before 5.8 */ 228 .editor-styles-wrapper .wp-block.wp-block-freeform blockquote { 228 229 border-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 229 230 } 230 231 231 .editor-block-list__layout .editor-block-list__block .wp-block-pullquote.is-style-solid-color:not(.has-background-color) { 232 /* Pullquote: The solid color variation was removed in 5.9, the CSS is kept for backwards compatibility. */ 233 .editor-styles-wrapper .wp-block .wp-block-pullquote.is-style-solid-color:not(.has-background-color), /* Before 5.8 */ 234 .editor-styles-wrapper .wp-block.wp-block-pullquote.is-style-solid-color:not(.has-background-color), 235 .editor-styles-wrapper .wp-block .wp-block-file .wp-block-file__button, /* Before 5.8, and when the block is aligned. */ 236 .editor-styles-wrapper .wp-block.wp-block-file .wp-block-file__button, 237 .editor-styles-wrapper .wp-block .wp-block-button:not(.is-style-outline) .wp-block-button__link, 238 .editor-styles-wrapper .wp-block .wp-block-search .wp-block-search__button, /* Before 5.8, and when the block is aligned. */ 239 .editor-styles-wrapper .wp-block.wp-block-search .wp-block-search__button { 232 240 background-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 233 241 } 234 242 235 .editor-block-list__layout .editor-block-list__block .wp-block-file .wp-block-file__button, 236 .editor-block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link, 237 .editor-block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link:active, 238 .editor-block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus, 239 .editor-block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover { 240 background-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 241 } 242 243 /* Hover colors */ 244 .editor-block-list__layout .editor-block-list__block a:hover, 245 .editor-block-list__layout .editor-block-list__block a:active, 246 .editor-block-list__layout .editor-block-list__block .wp-block-file .wp-block-file__textlink:hover { 243 /* Link hover colors */ 244 .editor-styles-wrapper .wp-block a:hover, 245 .editor-styles-wrapper .wp-block a:active, 246 .editor-styles-wrapper .wp-block.wp-block-file .wp-block-file__textlink:hover { 247 247 color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness_hover . ' ); /* base: #005177; */ 248 248 } 249 249 250 250 /* Do not overwrite solid color pullquote or cover links */ 251 .editor-block-list__layout .editor-block-list__block .wp-block-pullquote.is-style-solid-color a, 252 .editor-block-list__layout .editor-block-list__block .wp-block-cover a { 251 .editor-styles-wrapper .wp-block .wp-block-pullquote.is-style-solid-color a, /* Before 5.8 */ 252 .editor-styles-wrapper .wp-block.wp-block-pullquote.is-style-solid-color a, 253 .editor-styles-wrapper .wp-block.wp-block-cover a { 253 254 color: inherit; 254 255 } -
twentynineteen/2.8/inc/template-functions.php
r206169 r223028 101 101 * Adds custom 'sizes' attribute to responsive image functionality for post thumbnails. 102 102 * 103 * @ originTwenty Nineteen 1.0103 * @since Twenty Nineteen 1.0 104 104 * 105 105 * @param string[] $attr Array of attribute values for the image markup, keyed by attribute name. … … 164 164 * for flyout and dropdown menus. 165 165 * 166 * @ref https://www.w3.org/WAI/tutorials/menus/flyout/ 166 * @link https://www.w3.org/WAI/tutorials/menus/flyout/ 167 * 167 168 * @param array $atts { 168 169 * The HTML attributes applied to the menu item's `<a>` element, empty strings are ignored. -
twentynineteen/2.8/package-lock.json
r207575 r223028 1 1 { 2 2 "name": "twentynineteen", 3 "version": "2. 7.0",3 "version": "2.8.0", 4 4 "lockfileVersion": 2, 5 5 "requires": true, … … 7 7 "": { 8 8 "name": "twentynineteen", 9 "version": "2. 7.0",9 "version": "2.8.0", 10 10 "devDependencies": { 11 "@wordpress/browserslist-config": "^5. 24.0",12 "autoprefixer": "^10.4.1 5",11 "@wordpress/browserslist-config": "^5.31.0", 12 "autoprefixer": "^10.4.16", 13 13 "chokidar-cli": "^3.0.0", 14 14 "node-sass": "^9.0.0", 15 15 "npm-run-all": "^4.1.5", 16 "postcss": "^8.4.29", 17 "postcss-cli": "^10.1.0", 18 "postcss-focus-within": "^8.0.0", 19 "rtlcss": "^4.1.0" 16 "postcss": "^8.4.32", 17 "postcss-cli": "^11.0.0", 18 "postcss-focus-within": "^8.0.1", 19 "rtlcss": "^4.1.1" 20 }, 21 "engines": { 22 "node": ">=20.10.0", 23 "npm": ">=10.2.3" 20 24 } 21 25 }, … … 150 154 } 151 155 }, 156 "node_modules/@sindresorhus/merge-streams": { 157 "version": "1.0.0", 158 "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", 159 "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", 160 "dev": true, 161 "engines": { 162 "node": ">=18" 163 }, 164 "funding": { 165 "url": "https://github.com/sponsors/sindresorhus" 166 } 167 }, 152 168 "node_modules/@tootallnate/once": { 153 169 "version": "2.0.0", … … 172 188 }, 173 189 "node_modules/@wordpress/browserslist-config": { 174 "version": "5. 24.0",175 "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5. 24.0.tgz",176 "integrity": "sha512- 6QYbEVeIZxak8Bt0XCQ7msF9QcVjWqdREgDXVcWPD907WdKC5Hmi8ZtY63mY5OouKn5Cnxg7VJRv1AWb9eT0/g==",190 "version": "5.31.0", 191 "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.31.0.tgz", 192 "integrity": "sha512-fjglKNuqMKfGXrxuqea8ndTLkga9MfnyBBYuniGZ7cQo3iOhOn6ZqlfKygZdAuZ19FOwQWaQ+9W9MpOtU/4oCA==", 177 193 "dev": true, 178 194 "engines": { … … 297 313 }, 298 314 "node_modules/autoprefixer": { 299 "version": "10.4.1 5",300 "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.1 5.tgz",301 "integrity": "sha512- KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==",315 "version": "10.4.16", 316 "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", 317 "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", 302 318 "dev": true, 303 319 "funding": [ … … 317 333 "dependencies": { 318 334 "browserslist": "^4.21.10", 319 "caniuse-lite": "^1.0.300015 20",320 "fraction.js": "^4. 2.0",335 "caniuse-lite": "^1.0.30001538", 336 "fraction.js": "^4.3.6", 321 337 "normalize-range": "^0.1.2", 322 338 "picocolors": "^1.0.0", … … 498 514 }, 499 515 "node_modules/caniuse-lite": { 500 "version": "1.0.300015 27",501 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.300015 27.tgz",502 "integrity": "sha512- YkJi7RwPgWtXVSgK4lG9AHH57nSzvvOp9MesgXmw4Q7n0C3H04L0foHqfxcmSAm5AcWb8dW9AYj2tR7/5GnddQ==",516 "version": "1.0.30001566", 517 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", 518 "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", 503 519 "dev": true, 504 520 "funding": [ … … 636 652 } 637 653 }, 638 "node_modules/chokidar-cli/node_modules/readdirp/node_modules/picomatch": {639 "version": "2.3.0",640 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",641 "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",642 "dev": true,643 "engines": {644 "node": ">=8.6"645 },646 "funding": {647 "url": "https://github.com/sponsors/jonschlinkert"648 }649 },650 654 "node_modules/chownr": { 651 655 "version": "2.0.0", … … 846 850 "engines": { 847 851 "node": ">= 0.6.0" 848 }849 },850 "node_modules/dir-glob": {851 "version": "3.0.1",852 "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",853 "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",854 "dev": true,855 "dependencies": {856 "path-type": "^4.0.0"857 },858 "engines": {859 "node": ">=8"860 852 } 861 853 }, … … 956 948 }, 957 949 "node_modules/fast-glob": { 958 "version": "3. 2.12",959 "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3. 2.12.tgz",960 "integrity": "sha512- DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",950 "version": "3.3.2", 951 "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 952 "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 961 953 "dev": true, 962 954 "dependencies": { … … 972 964 }, 973 965 "node_modules/fastq": { 974 "version": "1.1 5.0",975 "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.1 5.0.tgz",976 "integrity": "sha512- wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",966 "version": "1.16.0", 967 "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", 968 "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", 977 969 "dev": true, 978 970 "dependencies": { … … 1005 997 }, 1006 998 "node_modules/fraction.js": { 1007 "version": "4. 2.0",1008 "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4. 2.0.tgz",1009 "integrity": "sha512- MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",999 "version": "4.3.7", 1000 "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 1001 "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 1010 1002 "dev": true, 1011 1003 "engines": { … … 1014 1006 "funding": { 1015 1007 "type": "patreon", 1016 "url": "https:// www.patreon.com/infusion"1008 "url": "https://github.com/sponsors/rawify" 1017 1009 } 1018 1010 }, … … 1184 1176 }, 1185 1177 "node_modules/globby": { 1186 "version": "13.1.3", 1187 "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", 1188 "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", 1189 "dev": true, 1190 "dependencies": { 1191 "dir-glob": "^3.0.1", 1192 "fast-glob": "^3.2.11", 1193 "ignore": "^5.2.0", 1194 "merge2": "^1.4.1", 1195 "slash": "^4.0.0" 1196 }, 1197 "engines": { 1198 "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1199 }, 1200 "funding": { 1201 "url": "https://github.com/sponsors/sindresorhus" 1202 } 1203 }, 1204 "node_modules/globby/node_modules/slash": { 1205 "version": "4.0.0", 1206 "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1207 "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1208 "dev": true, 1209 "engines": { 1210 "node": ">=12" 1178 "version": "14.0.0", 1179 "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", 1180 "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", 1181 "dev": true, 1182 "dependencies": { 1183 "@sindresorhus/merge-streams": "^1.0.0", 1184 "fast-glob": "^3.3.2", 1185 "ignore": "^5.2.4", 1186 "path-type": "^5.0.0", 1187 "slash": "^5.1.0", 1188 "unicorn-magic": "^0.1.0" 1189 }, 1190 "engines": { 1191 "node": ">=18" 1211 1192 }, 1212 1193 "funding": { … … 1361 1342 }, 1362 1343 "node_modules/ignore": { 1363 "version": "5. 2.4",1364 "resolved": "https://registry.npmjs.org/ignore/-/ignore-5. 2.4.tgz",1365 "integrity": "sha512- MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",1344 "version": "5.3.0", 1345 "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", 1346 "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", 1366 1347 "dev": true, 1367 1348 "engines": { … … 1599 1580 }, 1600 1581 "node_modules/lilconfig": { 1601 "version": " 2.0.6",1602 "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig- 2.0.6.tgz",1603 "integrity": "sha512- 9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==",1604 "dev": true, 1605 "engines": { 1606 "node": ">=1 0"1582 "version": "3.0.0", 1583 "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", 1584 "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", 1585 "dev": true, 1586 "engines": { 1587 "node": ">=14" 1607 1588 } 1608 1589 }, … … 1812 1793 } 1813 1794 }, 1814 "node_modules/micromatch/node_modules/picomatch": {1815 "version": "2.3.1",1816 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",1817 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",1818 "dev": true,1819 "engines": {1820 "node": ">=8.6"1821 },1822 "funding": {1823 "url": "https://github.com/sponsors/jonschlinkert"1824 }1825 },1826 1795 "node_modules/min-indent": { 1827 1796 "version": "1.0.1", … … 1974 1943 }, 1975 1944 "node_modules/nanoid": { 1976 "version": "3.3. 6",1977 "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3. 6.tgz",1978 "integrity": "sha512- BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",1945 "version": "3.3.7", 1946 "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 1947 "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 1979 1948 "dev": true, 1980 1949 "funding": [ … … 2681 2650 }, 2682 2651 "node_modules/path-type": { 2683 "version": "4.0.0", 2684 "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2685 "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2686 "dev": true, 2687 "engines": { 2688 "node": ">=8" 2652 "version": "5.0.0", 2653 "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", 2654 "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", 2655 "dev": true, 2656 "engines": { 2657 "node": ">=12" 2658 }, 2659 "funding": { 2660 "url": "https://github.com/sponsors/sindresorhus" 2689 2661 } 2690 2662 }, … … 2696 2668 }, 2697 2669 "node_modules/picomatch": { 2698 "version": "2.0.7", 2699 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.0.7.tgz", 2700 "integrity": "sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==", 2701 "dev": true, 2702 "engines": { 2703 "node": ">=8" 2670 "version": "2.3.1", 2671 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2672 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2673 "dev": true, 2674 "engines": { 2675 "node": ">=8.6" 2676 }, 2677 "funding": { 2678 "url": "https://github.com/sponsors/jonschlinkert" 2704 2679 } 2705 2680 }, … … 2726 2701 }, 2727 2702 "node_modules/postcss": { 2728 "version": "8.4. 29",2729 "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4. 29.tgz",2730 "integrity": "sha512- cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",2703 "version": "8.4.32", 2704 "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", 2705 "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", 2731 2706 "dev": true, 2732 2707 "funding": [ … … 2745 2720 ], 2746 2721 "dependencies": { 2747 "nanoid": "^3.3. 6",2722 "nanoid": "^3.3.7", 2748 2723 "picocolors": "^1.0.0", 2749 2724 "source-map-js": "^1.0.2" … … 2754 2729 }, 2755 2730 "node_modules/postcss-cli": { 2756 "version": "1 0.1.0",2757 "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-1 0.1.0.tgz",2758 "integrity": "sha512- Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==",2731 "version": "11.0.0", 2732 "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.0.tgz", 2733 "integrity": "sha512-xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA==", 2759 2734 "dev": true, 2760 2735 "dependencies": { … … 2763 2738 "fs-extra": "^11.0.0", 2764 2739 "get-stdin": "^9.0.0", 2765 "globby": "^1 3.0.0",2740 "globby": "^14.0.0", 2766 2741 "picocolors": "^1.0.0", 2767 "postcss-load-config": "^ 4.0.0",2742 "postcss-load-config": "^5.0.0", 2768 2743 "postcss-reporter": "^7.0.0", 2769 2744 "pretty-hrtime": "^1.0.3", … … 2776 2751 }, 2777 2752 "engines": { 2778 "node": ">=1 4"2753 "node": ">=18" 2779 2754 }, 2780 2755 "peerDependencies": { … … 2916 2891 }, 2917 2892 "node_modules/postcss-focus-within": { 2918 "version": "8.0. 0",2919 "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0. 0.tgz",2920 "integrity": "sha512- E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA==",2893 "version": "8.0.1", 2894 "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz", 2895 "integrity": "sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==", 2921 2896 "dev": true, 2922 2897 "funding": [ … … 2941 2916 }, 2942 2917 "node_modules/postcss-load-config": { 2943 "version": "4.0.1", 2944 "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 2945 "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 2946 "dev": true, 2947 "dependencies": { 2948 "lilconfig": "^2.0.5", 2949 "yaml": "^2.1.1" 2950 }, 2951 "engines": { 2952 "node": ">= 14" 2953 }, 2954 "funding": { 2955 "type": "opencollective", 2956 "url": "https://opencollective.com/postcss/" 2918 "version": "5.0.2", 2919 "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.2.tgz", 2920 "integrity": "sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==", 2921 "dev": true, 2922 "funding": [ 2923 { 2924 "type": "opencollective", 2925 "url": "https://opencollective.com/postcss/" 2926 }, 2927 { 2928 "type": "github", 2929 "url": "https://github.com/sponsors/ai" 2930 } 2931 ], 2932 "dependencies": { 2933 "lilconfig": "^3.0.0", 2934 "yaml": "^2.3.4" 2935 }, 2936 "engines": { 2937 "node": ">= 18" 2957 2938 }, 2958 2939 "peerDependencies": { 2959 " postcss": ">=8.0.9",2960 " ts-node": ">=9.0.0"2940 "jiti": ">=1.21.0", 2941 "postcss": ">=8.0.9" 2961 2942 }, 2962 2943 "peerDependenciesMeta": { 2944 "jiti": { 2945 "optional": true 2946 }, 2963 2947 "postcss": { 2964 "optional": true2965 },2966 "ts-node": {2967 2948 "optional": true 2968 2949 } … … 3202 3183 } 3203 3184 }, 3204 "node_modules/readdirp/node_modules/picomatch": {3205 "version": "2.3.1",3206 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",3207 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",3208 "dev": true,3209 "engines": {3210 "node": ">=8.6"3211 },3212 "funding": {3213 "url": "https://github.com/sponsors/jonschlinkert"3214 }3215 },3216 3185 "node_modules/redent": { 3217 3186 "version": "3.0.0", … … 3286 3255 }, 3287 3256 "node_modules/rtlcss": { 3288 "version": "4.1. 0",3289 "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.1. 0.tgz",3290 "integrity": "sha512- W+N4hh0nVqVrrn3mRkHakxpB+c9cQ4CRT67O39kgA+1DjyhrdsqyCqIuHXyvWaXn4/835n+oX3fYJCi4+G/06A==",3257 "version": "4.1.1", 3258 "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.1.1.tgz", 3259 "integrity": "sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ==", 3291 3260 "dev": true, 3292 3261 "dependencies": { … … 3551 3520 }, 3552 3521 "node_modules/slash": { 3553 "version": "5. 0.0",3554 "resolved": "https://registry.npmjs.org/slash/-/slash-5. 0.0.tgz",3555 "integrity": "sha512- n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==",3522 "version": "5.1.0", 3523 "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", 3524 "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", 3556 3525 "dev": true, 3557 3526 "engines": { … … 3893 3862 } 3894 3863 }, 3864 "node_modules/unicorn-magic": { 3865 "version": "0.1.0", 3866 "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", 3867 "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", 3868 "dev": true, 3869 "engines": { 3870 "node": ">=18" 3871 }, 3872 "funding": { 3873 "url": "https://github.com/sponsors/sindresorhus" 3874 } 3875 }, 3895 3876 "node_modules/unique-filename": { 3896 3877 "version": "2.0.1", … … 4046 4027 }, 4047 4028 "node_modules/yaml": { 4048 "version": "2.3. 2",4049 "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3. 2.tgz",4050 "integrity": "sha512- N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==",4029 "version": "2.3.4", 4030 "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", 4031 "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", 4051 4032 "dev": true, 4052 4033 "engines": { … … 4196 4177 } 4197 4178 }, 4179 "@sindresorhus/merge-streams": { 4180 "version": "1.0.0", 4181 "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", 4182 "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", 4183 "dev": true 4184 }, 4198 4185 "@tootallnate/once": { 4199 4186 "version": "2.0.0", … … 4215 4202 }, 4216 4203 "@wordpress/browserslist-config": { 4217 "version": "5. 24.0",4218 "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5. 24.0.tgz",4219 "integrity": "sha512- 6QYbEVeIZxak8Bt0XCQ7msF9QcVjWqdREgDXVcWPD907WdKC5Hmi8ZtY63mY5OouKn5Cnxg7VJRv1AWb9eT0/g==",4204 "version": "5.31.0", 4205 "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.31.0.tgz", 4206 "integrity": "sha512-fjglKNuqMKfGXrxuqea8ndTLkga9MfnyBBYuniGZ7cQo3iOhOn6ZqlfKygZdAuZ19FOwQWaQ+9W9MpOtU/4oCA==", 4220 4207 "dev": true 4221 4208 }, … … 4310 4297 }, 4311 4298 "autoprefixer": { 4312 "version": "10.4.1 5",4313 "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.1 5.tgz",4314 "integrity": "sha512- KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==",4299 "version": "10.4.16", 4300 "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", 4301 "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", 4315 4302 "dev": true, 4316 4303 "requires": { 4317 4304 "browserslist": "^4.21.10", 4318 "caniuse-lite": "^1.0.300015 20",4319 "fraction.js": "^4. 2.0",4305 "caniuse-lite": "^1.0.30001538", 4306 "fraction.js": "^4.3.6", 4320 4307 "normalize-range": "^0.1.2", 4321 4308 "picocolors": "^1.0.0", … … 4443 4430 }, 4444 4431 "caniuse-lite": { 4445 "version": "1.0.300015 27",4446 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.300015 27.tgz",4447 "integrity": "sha512- YkJi7RwPgWtXVSgK4lG9AHH57nSzvvOp9MesgXmw4Q7n0C3H04L0foHqfxcmSAm5AcWb8dW9AYj2tR7/5GnddQ==",4432 "version": "1.0.30001566", 4433 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", 4434 "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", 4448 4435 "dev": true 4449 4436 }, … … 4527 4514 "requires": { 4528 4515 "picomatch": "^2.2.1" 4529 },4530 "dependencies": {4531 "picomatch": {4532 "version": "2.3.0",4533 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",4534 "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",4535 "dev": true4536 }4537 4516 } 4538 4517 } … … 4693 4672 "dev": true 4694 4673 }, 4695 "dir-glob": {4696 "version": "3.0.1",4697 "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",4698 "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",4699 "dev": true,4700 "requires": {4701 "path-type": "^4.0.0"4702 }4703 },4704 4674 "electron-to-chromium": { 4705 4675 "version": "1.4.509", … … 4783 4753 }, 4784 4754 "fast-glob": { 4785 "version": "3. 2.12",4786 "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3. 2.12.tgz",4787 "integrity": "sha512- DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",4755 "version": "3.3.2", 4756 "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 4757 "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 4788 4758 "dev": true, 4789 4759 "requires": { … … 4796 4766 }, 4797 4767 "fastq": { 4798 "version": "1.1 5.0",4799 "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.1 5.0.tgz",4800 "integrity": "sha512- wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",4768 "version": "1.16.0", 4769 "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", 4770 "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", 4801 4771 "dev": true, 4802 4772 "requires": { … … 4823 4793 }, 4824 4794 "fraction.js": { 4825 "version": "4. 2.0",4826 "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4. 2.0.tgz",4827 "integrity": "sha512- MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",4795 "version": "4.3.7", 4796 "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 4797 "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 4828 4798 "dev": true 4829 4799 }, … … 4956 4926 }, 4957 4927 "globby": { 4958 "version": "13.1.3", 4959 "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", 4960 "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", 4961 "dev": true, 4962 "requires": { 4963 "dir-glob": "^3.0.1", 4964 "fast-glob": "^3.2.11", 4965 "ignore": "^5.2.0", 4966 "merge2": "^1.4.1", 4967 "slash": "^4.0.0" 4968 }, 4969 "dependencies": { 4970 "slash": { 4971 "version": "4.0.0", 4972 "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 4973 "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 4974 "dev": true 4975 } 4928 "version": "14.0.0", 4929 "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", 4930 "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", 4931 "dev": true, 4932 "requires": { 4933 "@sindresorhus/merge-streams": "^1.0.0", 4934 "fast-glob": "^3.3.2", 4935 "ignore": "^5.2.4", 4936 "path-type": "^5.0.0", 4937 "slash": "^5.1.0", 4938 "unicorn-magic": "^0.1.0" 4976 4939 } 4977 4940 }, … … 5095 5058 }, 5096 5059 "ignore": { 5097 "version": "5. 2.4",5098 "resolved": "https://registry.npmjs.org/ignore/-/ignore-5. 2.4.tgz",5099 "integrity": "sha512- MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",5060 "version": "5.3.0", 5061 "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", 5062 "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", 5100 5063 "dev": true 5101 5064 }, … … 5286 5249 }, 5287 5250 "lilconfig": { 5288 "version": " 2.0.6",5289 "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig- 2.0.6.tgz",5290 "integrity": "sha512- 9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==",5251 "version": "3.0.0", 5252 "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", 5253 "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", 5291 5254 "dev": true 5292 5255 }, … … 5448 5411 "braces": "^3.0.2", 5449 5412 "picomatch": "^2.3.1" 5450 },5451 "dependencies": {5452 "picomatch": {5453 "version": "2.3.1",5454 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",5455 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",5456 "dev": true5457 }5458 5413 } 5459 5414 }, … … 5570 5525 }, 5571 5526 "nanoid": { 5572 "version": "3.3. 6",5573 "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3. 6.tgz",5574 "integrity": "sha512- BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",5527 "version": "3.3.7", 5528 "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 5529 "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 5575 5530 "dev": true 5576 5531 }, … … 6100 6055 }, 6101 6056 "path-type": { 6102 "version": " 4.0.0",6103 "resolved": "https://registry.npmjs.org/path-type/-/path-type- 4.0.0.tgz",6104 "integrity": "sha512- gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",6057 "version": "5.0.0", 6058 "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", 6059 "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", 6105 6060 "dev": true 6106 6061 }, … … 6112 6067 }, 6113 6068 "picomatch": { 6114 "version": "2. 0.7",6115 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2. 0.7.tgz",6116 "integrity": "sha512- oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==",6069 "version": "2.3.1", 6070 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 6071 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 6117 6072 "dev": true 6118 6073 }, … … 6130 6085 }, 6131 6086 "postcss": { 6132 "version": "8.4. 29",6133 "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4. 29.tgz",6134 "integrity": "sha512- cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",6135 "dev": true, 6136 "requires": { 6137 "nanoid": "^3.3. 6",6087 "version": "8.4.32", 6088 "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", 6089 "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", 6090 "dev": true, 6091 "requires": { 6092 "nanoid": "^3.3.7", 6138 6093 "picocolors": "^1.0.0", 6139 6094 "source-map-js": "^1.0.2" … … 6141 6096 }, 6142 6097 "postcss-cli": { 6143 "version": "1 0.1.0",6144 "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-1 0.1.0.tgz",6145 "integrity": "sha512- Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==",6098 "version": "11.0.0", 6099 "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.0.tgz", 6100 "integrity": "sha512-xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA==", 6146 6101 "dev": true, 6147 6102 "requires": { … … 6150 6105 "fs-extra": "^11.0.0", 6151 6106 "get-stdin": "^9.0.0", 6152 "globby": "^1 3.0.0",6107 "globby": "^14.0.0", 6153 6108 "picocolors": "^1.0.0", 6154 "postcss-load-config": "^ 4.0.0",6109 "postcss-load-config": "^5.0.0", 6155 6110 "postcss-reporter": "^7.0.0", 6156 6111 "pretty-hrtime": "^1.0.3", … … 6257 6212 }, 6258 6213 "postcss-focus-within": { 6259 "version": "8.0. 0",6260 "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0. 0.tgz",6261 "integrity": "sha512- E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA==",6214 "version": "8.0.1", 6215 "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz", 6216 "integrity": "sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==", 6262 6217 "dev": true, 6263 6218 "requires": { … … 6266 6221 }, 6267 6222 "postcss-load-config": { 6268 "version": " 4.0.1",6269 "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config- 4.0.1.tgz",6270 "integrity": "sha512- vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",6271 "dev": true, 6272 "requires": { 6273 "lilconfig": "^ 2.0.5",6274 "yaml": "^2. 1.1"6223 "version": "5.0.2", 6224 "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.2.tgz", 6225 "integrity": "sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==", 6226 "dev": true, 6227 "requires": { 6228 "lilconfig": "^3.0.0", 6229 "yaml": "^2.3.4" 6275 6230 } 6276 6231 }, … … 6441 6396 "requires": { 6442 6397 "picomatch": "^2.2.1" 6443 },6444 "dependencies": {6445 "picomatch": {6446 "version": "2.3.1",6447 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",6448 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",6449 "dev": true6450 }6451 6398 } 6452 6399 }, … … 6504 6451 }, 6505 6452 "rtlcss": { 6506 "version": "4.1. 0",6507 "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.1. 0.tgz",6508 "integrity": "sha512- W+N4hh0nVqVrrn3mRkHakxpB+c9cQ4CRT67O39kgA+1DjyhrdsqyCqIuHXyvWaXn4/835n+oX3fYJCi4+G/06A==",6453 "version": "4.1.1", 6454 "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.1.1.tgz", 6455 "integrity": "sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ==", 6509 6456 "dev": true, 6510 6457 "requires": { … … 6689 6636 }, 6690 6637 "slash": { 6691 "version": "5. 0.0",6692 "resolved": "https://registry.npmjs.org/slash/-/slash-5. 0.0.tgz",6693 "integrity": "sha512- n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==",6638 "version": "5.1.0", 6639 "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", 6640 "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", 6694 6641 "dev": true 6695 6642 }, … … 6963 6910 "dev": true 6964 6911 }, 6912 "unicorn-magic": { 6913 "version": "0.1.0", 6914 "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", 6915 "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", 6916 "dev": true 6917 }, 6965 6918 "unique-filename": { 6966 6919 "version": "2.0.1", … … 7080 7033 }, 7081 7034 "yaml": { 7082 "version": "2.3. 2",7083 "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3. 2.tgz",7084 "integrity": "sha512- N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==",7035 "version": "2.3.4", 7036 "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", 7037 "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", 7085 7038 "dev": true 7086 7039 }, -
twentynineteen/2.8/package.json
r207575 r223028 1 1 { 2 2 "name": "twentynineteen", 3 "version": "2. 7.0",3 "version": "2.8.0", 4 4 "description": "Default WP Theme", 5 5 "bugs": { … … 7 7 }, 8 8 "homepage": "https://wordpress.org/themes/twentynineteen/", 9 "engines": { 10 "node": ">=20.10.0", 11 "npm": ">=10.2.3" 12 }, 9 13 "devDependencies": { 10 "@wordpress/browserslist-config": "^5. 24.0",11 "autoprefixer": "^10.4.1 5",14 "@wordpress/browserslist-config": "^5.31.0", 15 "autoprefixer": "^10.4.16", 12 16 "chokidar-cli": "^3.0.0", 13 17 "node-sass": "^9.0.0", 14 18 "npm-run-all": "^4.1.5", 15 "postcss": "^8.4. 29",16 "postcss-cli": "^1 0.1.0",17 "postcss-focus-within": "^8.0. 0",18 "rtlcss": "^4.1. 0"19 "postcss": "^8.4.32", 20 "postcss-cli": "^11.0.0", 21 "postcss-focus-within": "^8.0.1", 22 "rtlcss": "^4.1.1" 19 23 }, 20 24 "rtlcssConfig": { -
twentynineteen/2.8/readme.txt
r207575 r223028 3 3 Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-patterns 4 4 Requires at least: 4.7 5 Tested up to: 6. 45 Tested up to: 6.5 6 6 Requires PHP: 5.2.4 7 Stable tag: 2. 77 Stable tag: 2.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 == Copyright == 27 27 28 Twenty Nineteen WordPress Theme, Copyright 2018-202 3WordPress.org28 Twenty Nineteen WordPress Theme, Copyright 2018-2024 WordPress.org 29 29 Twenty Nineteen is distributed under the terms of the GNU GPL 30 30 … … 41 41 == Changelog == 42 42 43 = 2.8 = 44 * Released: April 2, 2024 45 46 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.8 47 43 48 = 2.7 = 44 49 * Released: November 7, 2023 45 50 46 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.751 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.7 47 52 48 53 = 2.6 = 49 54 * Released: August 8, 2023 50 55 51 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.656 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.6 52 57 53 58 = 2.5 = 54 59 * Released: March 28, 2023 55 60 56 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.561 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.5 57 62 58 63 = 2.4 = 59 64 * Released: November 1, 2022 60 65 61 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.466 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.4 62 67 63 68 = 2.3 = 64 69 * Released: May 24, 2022 65 70 66 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.371 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.3 67 72 68 73 = 2.2 = 69 74 * Released: January 25, 2022 70 75 71 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.276 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.2 72 77 73 78 = 2.1 = 74 79 * Released: July 20, 2021 75 80 76 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.181 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.1 77 82 78 83 = 2.0 = 79 84 * Released: March 9, 2021 80 85 81 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_2.086 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_2.0 82 87 83 88 = 1.9 = 84 89 * Released: December 22, 2020 85 90 86 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.991 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.9 87 92 88 93 = 1.8 = 89 94 * Released: December 8, 2020 90 95 91 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.896 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.8 92 97 93 98 = 1.7 = 94 99 * Released: August 11, 2020 95 100 96 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.7101 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.7 97 102 98 103 = 1.6 = 99 104 * Released: June 10, 2020 100 105 101 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.6106 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.6 102 107 103 108 = 1.5 = 104 109 * Released: March 31, 2020 105 110 106 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.5111 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.5 107 112 108 113 = 1.4 = 109 114 * Released: May 7, 2019 110 115 111 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.4116 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.4 112 117 113 118 = 1.3 = 114 119 * Released: February 21, 2019 115 120 116 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.3121 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.3 117 122 118 123 = 1.2 = 119 124 * Released: January 9, 2019 120 125 121 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.2126 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.2 122 127 123 128 = 1.1 = 124 129 * Released: December 19, 2018 125 130 126 https:// codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.1131 https://wordpress.org/documentation/article/twenty-nineteen-changelog/#Version_1.1 127 132 128 133 = 1.0 = … … 133 138 == Resources == 134 139 * normalize.css, © 2012-2018 Nicolas Gallagher and Jonathan Neal, MIT 135 * Underscores, © 2012-202 3Automattic, Inc., GNU GPL v2 or later140 * Underscores, © 2012-2024 Automattic, Inc., GNU GPL v2 or later 136 141 * Bundled block pattern images: 137 142 * Abstract Background by HD Wallpapers, CC0. https://stocksnap.io/photo/abstract-background-0SRRVNMKBX -
twentynineteen/2.8/sass/blocks/_blocks.scss
r178730 r223028 164 164 } 165 165 166 //! Button 166 //! Buttons 167 .wp-block-buttons { 168 line-height: $font__line-height-heading; 169 } 170 167 171 .wp-block-button { 168 172 … … 172 176 font-size: $font__size-sm; 173 177 @include font-family( $font__heading ); 174 line-height: $font__line-height-heading;175 178 box-sizing: border-box; 176 179 font-weight: bold; … … 178 181 padding: ($size__spacing-unit * .76) $size__spacing-unit; 179 182 outline: none; 180 outline: none;181 183 182 184 &:not(.has-background) { … … 192 194 background: $color__background-button-hover; 193 195 cursor: pointer; 196 &:not(.has-background) { 197 background: $color__background-button-hover; 198 } 194 199 } 195 200 … … 199 204 outline: thin dotted; 200 205 outline-offset: -4px; 206 &:not(.has-background) { 207 background: $color__background-button-hover; 208 } 201 209 } 202 210 } -
twentynineteen/2.8/style-editor.css
r207575 r223028 30 30 h6:lang(ar), figcaption:lang(ar), 31 31 .gallery-caption:lang(ar), .editor-post-title__block .editor-post-title__input:lang(ar), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ar), .wp-block-paragraph.has-drop-cap:lang(ar):not(:focus)::first-letter, .wp-block-table:lang(ar), .wp-block-cover h2:lang(ar), 32 .wp-block-cover .wp-block-cover-text:lang(ar), .wp-block-button .wp-block-button__link:lang(ar), .wp-block- quote cite:lang(ar),32 .wp-block-cover .wp-block-cover-text:lang(ar), .wp-block-button .wp-block-button__link:lang(ar), .wp-block-search .wp-block-search__button:lang(ar), .wp-block-quote cite:lang(ar), 33 33 .wp-block-quote footer:lang(ar), 34 34 .wp-block-quote .wp-block-quote__citation:lang(ar), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ar), … … 48 48 h6:lang(ary), figcaption:lang(ary), 49 49 .gallery-caption:lang(ary), .editor-post-title__block .editor-post-title__input:lang(ary), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ary), .wp-block-paragraph.has-drop-cap:lang(ary):not(:focus)::first-letter, .wp-block-table:lang(ary), .wp-block-cover h2:lang(ary), 50 .wp-block-cover .wp-block-cover-text:lang(ary), .wp-block-button .wp-block-button__link:lang(ary), .wp-block- quote cite:lang(ary),50 .wp-block-cover .wp-block-cover-text:lang(ary), .wp-block-button .wp-block-button__link:lang(ary), .wp-block-search .wp-block-search__button:lang(ary), .wp-block-quote cite:lang(ary), 51 51 .wp-block-quote footer:lang(ary), 52 52 .wp-block-quote .wp-block-quote__citation:lang(ary), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ary), … … 66 66 h6:lang(azb), figcaption:lang(azb), 67 67 .gallery-caption:lang(azb), .editor-post-title__block .editor-post-title__input:lang(azb), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(azb), .wp-block-paragraph.has-drop-cap:lang(azb):not(:focus)::first-letter, .wp-block-table:lang(azb), .wp-block-cover h2:lang(azb), 68 .wp-block-cover .wp-block-cover-text:lang(azb), .wp-block-button .wp-block-button__link:lang(azb), .wp-block- quote cite:lang(azb),68 .wp-block-cover .wp-block-cover-text:lang(azb), .wp-block-button .wp-block-button__link:lang(azb), .wp-block-search .wp-block-search__button:lang(azb), .wp-block-quote cite:lang(azb), 69 69 .wp-block-quote footer:lang(azb), 70 70 .wp-block-quote .wp-block-quote__citation:lang(azb), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(azb), … … 84 84 h6:lang(ckb), figcaption:lang(ckb), 85 85 .gallery-caption:lang(ckb), .editor-post-title__block .editor-post-title__input:lang(ckb), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ckb), .wp-block-paragraph.has-drop-cap:lang(ckb):not(:focus)::first-letter, .wp-block-table:lang(ckb), .wp-block-cover h2:lang(ckb), 86 .wp-block-cover .wp-block-cover-text:lang(ckb), .wp-block-button .wp-block-button__link:lang(ckb), .wp-block- quote cite:lang(ckb),86 .wp-block-cover .wp-block-cover-text:lang(ckb), .wp-block-button .wp-block-button__link:lang(ckb), .wp-block-search .wp-block-search__button:lang(ckb), .wp-block-quote cite:lang(ckb), 87 87 .wp-block-quote footer:lang(ckb), 88 88 .wp-block-quote .wp-block-quote__citation:lang(ckb), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ckb), … … 102 102 h6:lang(fa-IR), figcaption:lang(fa-IR), 103 103 .gallery-caption:lang(fa-IR), .editor-post-title__block .editor-post-title__input:lang(fa-IR), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(fa-IR), .wp-block-paragraph.has-drop-cap:lang(fa-IR):not(:focus)::first-letter, .wp-block-table:lang(fa-IR), .wp-block-cover h2:lang(fa-IR), 104 .wp-block-cover .wp-block-cover-text:lang(fa-IR), .wp-block-button .wp-block-button__link:lang(fa-IR), .wp-block- quote cite:lang(fa-IR),104 .wp-block-cover .wp-block-cover-text:lang(fa-IR), .wp-block-button .wp-block-button__link:lang(fa-IR), .wp-block-search .wp-block-search__button:lang(fa-IR), .wp-block-quote cite:lang(fa-IR), 105 105 .wp-block-quote footer:lang(fa-IR), 106 106 .wp-block-quote .wp-block-quote__citation:lang(fa-IR), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(fa-IR), … … 120 120 h6:lang(haz), figcaption:lang(haz), 121 121 .gallery-caption:lang(haz), .editor-post-title__block .editor-post-title__input:lang(haz), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(haz), .wp-block-paragraph.has-drop-cap:lang(haz):not(:focus)::first-letter, .wp-block-table:lang(haz), .wp-block-cover h2:lang(haz), 122 .wp-block-cover .wp-block-cover-text:lang(haz), .wp-block-button .wp-block-button__link:lang(haz), .wp-block- quote cite:lang(haz),122 .wp-block-cover .wp-block-cover-text:lang(haz), .wp-block-button .wp-block-button__link:lang(haz), .wp-block-search .wp-block-search__button:lang(haz), .wp-block-quote cite:lang(haz), 123 123 .wp-block-quote footer:lang(haz), 124 124 .wp-block-quote .wp-block-quote__citation:lang(haz), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(haz), … … 138 138 h6:lang(ps), figcaption:lang(ps), 139 139 .gallery-caption:lang(ps), .editor-post-title__block .editor-post-title__input:lang(ps), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ps), .wp-block-paragraph.has-drop-cap:lang(ps):not(:focus)::first-letter, .wp-block-table:lang(ps), .wp-block-cover h2:lang(ps), 140 .wp-block-cover .wp-block-cover-text:lang(ps), .wp-block-button .wp-block-button__link:lang(ps), .wp-block- quote cite:lang(ps),140 .wp-block-cover .wp-block-cover-text:lang(ps), .wp-block-button .wp-block-button__link:lang(ps), .wp-block-search .wp-block-search__button:lang(ps), .wp-block-quote cite:lang(ps), 141 141 .wp-block-quote footer:lang(ps), 142 142 .wp-block-quote .wp-block-quote__citation:lang(ps), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ps), … … 156 156 h6:lang(be), figcaption:lang(be), 157 157 .gallery-caption:lang(be), .editor-post-title__block .editor-post-title__input:lang(be), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(be), .wp-block-paragraph.has-drop-cap:lang(be):not(:focus)::first-letter, .wp-block-table:lang(be), .wp-block-cover h2:lang(be), 158 .wp-block-cover .wp-block-cover-text:lang(be), .wp-block-button .wp-block-button__link:lang(be), .wp-block- quote cite:lang(be),158 .wp-block-cover .wp-block-cover-text:lang(be), .wp-block-button .wp-block-button__link:lang(be), .wp-block-search .wp-block-search__button:lang(be), .wp-block-quote cite:lang(be), 159 159 .wp-block-quote footer:lang(be), 160 160 .wp-block-quote .wp-block-quote__citation:lang(be), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(be), … … 174 174 h6:lang(bg-BG), figcaption:lang(bg-BG), 175 175 .gallery-caption:lang(bg-BG), .editor-post-title__block .editor-post-title__input:lang(bg-BG), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(bg-BG), .wp-block-paragraph.has-drop-cap:lang(bg-BG):not(:focus)::first-letter, .wp-block-table:lang(bg-BG), .wp-block-cover h2:lang(bg-BG), 176 .wp-block-cover .wp-block-cover-text:lang(bg-BG), .wp-block-button .wp-block-button__link:lang(bg-BG), .wp-block- quote cite:lang(bg-BG),176 .wp-block-cover .wp-block-cover-text:lang(bg-BG), .wp-block-button .wp-block-button__link:lang(bg-BG), .wp-block-search .wp-block-search__button:lang(bg-BG), .wp-block-quote cite:lang(bg-BG), 177 177 .wp-block-quote footer:lang(bg-BG), 178 178 .wp-block-quote .wp-block-quote__citation:lang(bg-BG), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(bg-BG), … … 192 192 h6:lang(kk), figcaption:lang(kk), 193 193 .gallery-caption:lang(kk), .editor-post-title__block .editor-post-title__input:lang(kk), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(kk), .wp-block-paragraph.has-drop-cap:lang(kk):not(:focus)::first-letter, .wp-block-table:lang(kk), .wp-block-cover h2:lang(kk), 194 .wp-block-cover .wp-block-cover-text:lang(kk), .wp-block-button .wp-block-button__link:lang(kk), .wp-block- quote cite:lang(kk),194 .wp-block-cover .wp-block-cover-text:lang(kk), .wp-block-button .wp-block-button__link:lang(kk), .wp-block-search .wp-block-search__button:lang(kk), .wp-block-quote cite:lang(kk), 195 195 .wp-block-quote footer:lang(kk), 196 196 .wp-block-quote .wp-block-quote__citation:lang(kk), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(kk), … … 210 210 h6:lang(mk-MK), figcaption:lang(mk-MK), 211 211 .gallery-caption:lang(mk-MK), .editor-post-title__block .editor-post-title__input:lang(mk-MK), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(mk-MK), .wp-block-paragraph.has-drop-cap:lang(mk-MK):not(:focus)::first-letter, .wp-block-table:lang(mk-MK), .wp-block-cover h2:lang(mk-MK), 212 .wp-block-cover .wp-block-cover-text:lang(mk-MK), .wp-block-button .wp-block-button__link:lang(mk-MK), .wp-block- quote cite:lang(mk-MK),212 .wp-block-cover .wp-block-cover-text:lang(mk-MK), .wp-block-button .wp-block-button__link:lang(mk-MK), .wp-block-search .wp-block-search__button:lang(mk-MK), .wp-block-quote cite:lang(mk-MK), 213 213 .wp-block-quote footer:lang(mk-MK), 214 214 .wp-block-quote .wp-block-quote__citation:lang(mk-MK), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(mk-MK), … … 228 228 h6:lang(mn), figcaption:lang(mn), 229 229 .gallery-caption:lang(mn), .editor-post-title__block .editor-post-title__input:lang(mn), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(mn), .wp-block-paragraph.has-drop-cap:lang(mn):not(:focus)::first-letter, .wp-block-table:lang(mn), .wp-block-cover h2:lang(mn), 230 .wp-block-cover .wp-block-cover-text:lang(mn), .wp-block-button .wp-block-button__link:lang(mn), .wp-block- quote cite:lang(mn),230 .wp-block-cover .wp-block-cover-text:lang(mn), .wp-block-button .wp-block-button__link:lang(mn), .wp-block-search .wp-block-search__button:lang(mn), .wp-block-quote cite:lang(mn), 231 231 .wp-block-quote footer:lang(mn), 232 232 .wp-block-quote .wp-block-quote__citation:lang(mn), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(mn), … … 246 246 h6:lang(ru-RU), figcaption:lang(ru-RU), 247 247 .gallery-caption:lang(ru-RU), .editor-post-title__block .editor-post-title__input:lang(ru-RU), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ru-RU), .wp-block-paragraph.has-drop-cap:lang(ru-RU):not(:focus)::first-letter, .wp-block-table:lang(ru-RU), .wp-block-cover h2:lang(ru-RU), 248 .wp-block-cover .wp-block-cover-text:lang(ru-RU), .wp-block-button .wp-block-button__link:lang(ru-RU), .wp-block- quote cite:lang(ru-RU),248 .wp-block-cover .wp-block-cover-text:lang(ru-RU), .wp-block-button .wp-block-button__link:lang(ru-RU), .wp-block-search .wp-block-search__button:lang(ru-RU), .wp-block-quote cite:lang(ru-RU), 249 249 .wp-block-quote footer:lang(ru-RU), 250 250 .wp-block-quote .wp-block-quote__citation:lang(ru-RU), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ru-RU), … … 264 264 h6:lang(sah), figcaption:lang(sah), 265 265 .gallery-caption:lang(sah), .editor-post-title__block .editor-post-title__input:lang(sah), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(sah), .wp-block-paragraph.has-drop-cap:lang(sah):not(:focus)::first-letter, .wp-block-table:lang(sah), .wp-block-cover h2:lang(sah), 266 .wp-block-cover .wp-block-cover-text:lang(sah), .wp-block-button .wp-block-button__link:lang(sah), .wp-block- quote cite:lang(sah),266 .wp-block-cover .wp-block-cover-text:lang(sah), .wp-block-button .wp-block-button__link:lang(sah), .wp-block-search .wp-block-search__button:lang(sah), .wp-block-quote cite:lang(sah), 267 267 .wp-block-quote footer:lang(sah), 268 268 .wp-block-quote .wp-block-quote__citation:lang(sah), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(sah), … … 282 282 h6:lang(sr-RS), figcaption:lang(sr-RS), 283 283 .gallery-caption:lang(sr-RS), .editor-post-title__block .editor-post-title__input:lang(sr-RS), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(sr-RS), .wp-block-paragraph.has-drop-cap:lang(sr-RS):not(:focus)::first-letter, .wp-block-table:lang(sr-RS), .wp-block-cover h2:lang(sr-RS), 284 .wp-block-cover .wp-block-cover-text:lang(sr-RS), .wp-block-button .wp-block-button__link:lang(sr-RS), .wp-block- quote cite:lang(sr-RS),284 .wp-block-cover .wp-block-cover-text:lang(sr-RS), .wp-block-button .wp-block-button__link:lang(sr-RS), .wp-block-search .wp-block-search__button:lang(sr-RS), .wp-block-quote cite:lang(sr-RS), 285 285 .wp-block-quote footer:lang(sr-RS), 286 286 .wp-block-quote .wp-block-quote__citation:lang(sr-RS), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(sr-RS), … … 300 300 h6:lang(tt-RU), figcaption:lang(tt-RU), 301 301 .gallery-caption:lang(tt-RU), .editor-post-title__block .editor-post-title__input:lang(tt-RU), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(tt-RU), .wp-block-paragraph.has-drop-cap:lang(tt-RU):not(:focus)::first-letter, .wp-block-table:lang(tt-RU), .wp-block-cover h2:lang(tt-RU), 302 .wp-block-cover .wp-block-cover-text:lang(tt-RU), .wp-block-button .wp-block-button__link:lang(tt-RU), .wp-block- quote cite:lang(tt-RU),302 .wp-block-cover .wp-block-cover-text:lang(tt-RU), .wp-block-button .wp-block-button__link:lang(tt-RU), .wp-block-search .wp-block-search__button:lang(tt-RU), .wp-block-quote cite:lang(tt-RU), 303 303 .wp-block-quote footer:lang(tt-RU), 304 304 .wp-block-quote .wp-block-quote__citation:lang(tt-RU), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(tt-RU), … … 318 318 h6:lang(uk), figcaption:lang(uk), 319 319 .gallery-caption:lang(uk), .editor-post-title__block .editor-post-title__input:lang(uk), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(uk), .wp-block-paragraph.has-drop-cap:lang(uk):not(:focus)::first-letter, .wp-block-table:lang(uk), .wp-block-cover h2:lang(uk), 320 .wp-block-cover .wp-block-cover-text:lang(uk), .wp-block-button .wp-block-button__link:lang(uk), .wp-block- quote cite:lang(uk),320 .wp-block-cover .wp-block-cover-text:lang(uk), .wp-block-button .wp-block-button__link:lang(uk), .wp-block-search .wp-block-search__button:lang(uk), .wp-block-quote cite:lang(uk), 321 321 .wp-block-quote footer:lang(uk), 322 322 .wp-block-quote .wp-block-quote__citation:lang(uk), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(uk), … … 336 336 h6:lang(zh-HK), figcaption:lang(zh-HK), 337 337 .gallery-caption:lang(zh-HK), .editor-post-title__block .editor-post-title__input:lang(zh-HK), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(zh-HK), .wp-block-paragraph.has-drop-cap:lang(zh-HK):not(:focus)::first-letter, .wp-block-table:lang(zh-HK), .wp-block-cover h2:lang(zh-HK), 338 .wp-block-cover .wp-block-cover-text:lang(zh-HK), .wp-block-button .wp-block-button__link:lang(zh-HK), .wp-block- quote cite:lang(zh-HK),338 .wp-block-cover .wp-block-cover-text:lang(zh-HK), .wp-block-button .wp-block-button__link:lang(zh-HK), .wp-block-search .wp-block-search__button:lang(zh-HK), .wp-block-quote cite:lang(zh-HK), 339 339 .wp-block-quote footer:lang(zh-HK), 340 340 .wp-block-quote .wp-block-quote__citation:lang(zh-HK), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(zh-HK), … … 354 354 h6:lang(zh-TW), figcaption:lang(zh-TW), 355 355 .gallery-caption:lang(zh-TW), .editor-post-title__block .editor-post-title__input:lang(zh-TW), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(zh-TW), .wp-block-paragraph.has-drop-cap:lang(zh-TW):not(:focus)::first-letter, .wp-block-table:lang(zh-TW), .wp-block-cover h2:lang(zh-TW), 356 .wp-block-cover .wp-block-cover-text:lang(zh-TW), .wp-block-button .wp-block-button__link:lang(zh-TW), .wp-block- quote cite:lang(zh-TW),356 .wp-block-cover .wp-block-cover-text:lang(zh-TW), .wp-block-button .wp-block-button__link:lang(zh-TW), .wp-block-search .wp-block-search__button:lang(zh-TW), .wp-block-quote cite:lang(zh-TW), 357 357 .wp-block-quote footer:lang(zh-TW), 358 358 .wp-block-quote .wp-block-quote__citation:lang(zh-TW), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(zh-TW), … … 372 372 h6:lang(zh-CN), figcaption:lang(zh-CN), 373 373 .gallery-caption:lang(zh-CN), .editor-post-title__block .editor-post-title__input:lang(zh-CN), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(zh-CN), .wp-block-paragraph.has-drop-cap:lang(zh-CN):not(:focus)::first-letter, .wp-block-table:lang(zh-CN), .wp-block-cover h2:lang(zh-CN), 374 .wp-block-cover .wp-block-cover-text:lang(zh-CN), .wp-block-button .wp-block-button__link:lang(zh-CN), .wp-block- quote cite:lang(zh-CN),374 .wp-block-cover .wp-block-cover-text:lang(zh-CN), .wp-block-button .wp-block-button__link:lang(zh-CN), .wp-block-search .wp-block-search__button:lang(zh-CN), .wp-block-quote cite:lang(zh-CN), 375 375 .wp-block-quote footer:lang(zh-CN), 376 376 .wp-block-quote .wp-block-quote__citation:lang(zh-CN), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(zh-CN), … … 390 390 h6:lang(bn-BD), figcaption:lang(bn-BD), 391 391 .gallery-caption:lang(bn-BD), .editor-post-title__block .editor-post-title__input:lang(bn-BD), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(bn-BD), .wp-block-paragraph.has-drop-cap:lang(bn-BD):not(:focus)::first-letter, .wp-block-table:lang(bn-BD), .wp-block-cover h2:lang(bn-BD), 392 .wp-block-cover .wp-block-cover-text:lang(bn-BD), .wp-block-button .wp-block-button__link:lang(bn-BD), .wp-block- quote cite:lang(bn-BD),392 .wp-block-cover .wp-block-cover-text:lang(bn-BD), .wp-block-button .wp-block-button__link:lang(bn-BD), .wp-block-search .wp-block-search__button:lang(bn-BD), .wp-block-quote cite:lang(bn-BD), 393 393 .wp-block-quote footer:lang(bn-BD), 394 394 .wp-block-quote .wp-block-quote__citation:lang(bn-BD), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(bn-BD), … … 408 408 h6:lang(hi-IN), figcaption:lang(hi-IN), 409 409 .gallery-caption:lang(hi-IN), .editor-post-title__block .editor-post-title__input:lang(hi-IN), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(hi-IN), .wp-block-paragraph.has-drop-cap:lang(hi-IN):not(:focus)::first-letter, .wp-block-table:lang(hi-IN), .wp-block-cover h2:lang(hi-IN), 410 .wp-block-cover .wp-block-cover-text:lang(hi-IN), .wp-block-button .wp-block-button__link:lang(hi-IN), .wp-block- quote cite:lang(hi-IN),410 .wp-block-cover .wp-block-cover-text:lang(hi-IN), .wp-block-button .wp-block-button__link:lang(hi-IN), .wp-block-search .wp-block-search__button:lang(hi-IN), .wp-block-quote cite:lang(hi-IN), 411 411 .wp-block-quote footer:lang(hi-IN), 412 412 .wp-block-quote .wp-block-quote__citation:lang(hi-IN), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(hi-IN), … … 426 426 h6:lang(mr), figcaption:lang(mr), 427 427 .gallery-caption:lang(mr), .editor-post-title__block .editor-post-title__input:lang(mr), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(mr), .wp-block-paragraph.has-drop-cap:lang(mr):not(:focus)::first-letter, .wp-block-table:lang(mr), .wp-block-cover h2:lang(mr), 428 .wp-block-cover .wp-block-cover-text:lang(mr), .wp-block-button .wp-block-button__link:lang(mr), .wp-block- quote cite:lang(mr),428 .wp-block-cover .wp-block-cover-text:lang(mr), .wp-block-button .wp-block-button__link:lang(mr), .wp-block-search .wp-block-search__button:lang(mr), .wp-block-quote cite:lang(mr), 429 429 .wp-block-quote footer:lang(mr), 430 430 .wp-block-quote .wp-block-quote__citation:lang(mr), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(mr), … … 444 444 h6:lang(ne-NP), figcaption:lang(ne-NP), 445 445 .gallery-caption:lang(ne-NP), .editor-post-title__block .editor-post-title__input:lang(ne-NP), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ne-NP), .wp-block-paragraph.has-drop-cap:lang(ne-NP):not(:focus)::first-letter, .wp-block-table:lang(ne-NP), .wp-block-cover h2:lang(ne-NP), 446 .wp-block-cover .wp-block-cover-text:lang(ne-NP), .wp-block-button .wp-block-button__link:lang(ne-NP), .wp-block- quote cite:lang(ne-NP),446 .wp-block-cover .wp-block-cover-text:lang(ne-NP), .wp-block-button .wp-block-button__link:lang(ne-NP), .wp-block-search .wp-block-search__button:lang(ne-NP), .wp-block-quote cite:lang(ne-NP), 447 447 .wp-block-quote footer:lang(ne-NP), 448 448 .wp-block-quote .wp-block-quote__citation:lang(ne-NP), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ne-NP), … … 462 462 h6:lang(el), figcaption:lang(el), 463 463 .gallery-caption:lang(el), .editor-post-title__block .editor-post-title__input:lang(el), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(el), .wp-block-paragraph.has-drop-cap:lang(el):not(:focus)::first-letter, .wp-block-table:lang(el), .wp-block-cover h2:lang(el), 464 .wp-block-cover .wp-block-cover-text:lang(el), .wp-block-button .wp-block-button__link:lang(el), .wp-block- quote cite:lang(el),464 .wp-block-cover .wp-block-cover-text:lang(el), .wp-block-button .wp-block-button__link:lang(el), .wp-block-search .wp-block-search__button:lang(el), .wp-block-quote cite:lang(el), 465 465 .wp-block-quote footer:lang(el), 466 466 .wp-block-quote .wp-block-quote__citation:lang(el), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(el), … … 480 480 h6:lang(gu), figcaption:lang(gu), 481 481 .gallery-caption:lang(gu), .editor-post-title__block .editor-post-title__input:lang(gu), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(gu), .wp-block-paragraph.has-drop-cap:lang(gu):not(:focus)::first-letter, .wp-block-table:lang(gu), .wp-block-cover h2:lang(gu), 482 .wp-block-cover .wp-block-cover-text:lang(gu), .wp-block-button .wp-block-button__link:lang(gu), .wp-block- quote cite:lang(gu),482 .wp-block-cover .wp-block-cover-text:lang(gu), .wp-block-button .wp-block-button__link:lang(gu), .wp-block-search .wp-block-search__button:lang(gu), .wp-block-quote cite:lang(gu), 483 483 .wp-block-quote footer:lang(gu), 484 484 .wp-block-quote .wp-block-quote__citation:lang(gu), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(gu), … … 498 498 h6:lang(he-IL), figcaption:lang(he-IL), 499 499 .gallery-caption:lang(he-IL), .editor-post-title__block .editor-post-title__input:lang(he-IL), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(he-IL), .wp-block-paragraph.has-drop-cap:lang(he-IL):not(:focus)::first-letter, .wp-block-table:lang(he-IL), .wp-block-cover h2:lang(he-IL), 500 .wp-block-cover .wp-block-cover-text:lang(he-IL), .wp-block-button .wp-block-button__link:lang(he-IL), .wp-block- quote cite:lang(he-IL),500 .wp-block-cover .wp-block-cover-text:lang(he-IL), .wp-block-button .wp-block-button__link:lang(he-IL), .wp-block-search .wp-block-search__button:lang(he-IL), .wp-block-quote cite:lang(he-IL), 501 501 .wp-block-quote footer:lang(he-IL), 502 502 .wp-block-quote .wp-block-quote__citation:lang(he-IL), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(he-IL), … … 516 516 h6:lang(ja), figcaption:lang(ja), 517 517 .gallery-caption:lang(ja), .editor-post-title__block .editor-post-title__input:lang(ja), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ja), .wp-block-paragraph.has-drop-cap:lang(ja):not(:focus)::first-letter, .wp-block-table:lang(ja), .wp-block-cover h2:lang(ja), 518 .wp-block-cover .wp-block-cover-text:lang(ja), .wp-block-button .wp-block-button__link:lang(ja), .wp-block- quote cite:lang(ja),518 .wp-block-cover .wp-block-cover-text:lang(ja), .wp-block-button .wp-block-button__link:lang(ja), .wp-block-search .wp-block-search__button:lang(ja), .wp-block-quote cite:lang(ja), 519 519 .wp-block-quote footer:lang(ja), 520 520 .wp-block-quote .wp-block-quote__citation:lang(ja), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ja), … … 534 534 h6:lang(ko-KR), figcaption:lang(ko-KR), 535 535 .gallery-caption:lang(ko-KR), .editor-post-title__block .editor-post-title__input:lang(ko-KR), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(ko-KR), .wp-block-paragraph.has-drop-cap:lang(ko-KR):not(:focus)::first-letter, .wp-block-table:lang(ko-KR), .wp-block-cover h2:lang(ko-KR), 536 .wp-block-cover .wp-block-cover-text:lang(ko-KR), .wp-block-button .wp-block-button__link:lang(ko-KR), .wp-block- quote cite:lang(ko-KR),536 .wp-block-cover .wp-block-cover-text:lang(ko-KR), .wp-block-button .wp-block-button__link:lang(ko-KR), .wp-block-search .wp-block-search__button:lang(ko-KR), .wp-block-quote cite:lang(ko-KR), 537 537 .wp-block-quote footer:lang(ko-KR), 538 538 .wp-block-quote .wp-block-quote__citation:lang(ko-KR), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(ko-KR), … … 552 552 h6:lang(th), figcaption:lang(th), 553 553 .gallery-caption:lang(th), .editor-post-title__block .editor-post-title__input:lang(th), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(th), .wp-block-paragraph.has-drop-cap:lang(th):not(:focus)::first-letter, .wp-block-table:lang(th), .wp-block-cover h2:lang(th), 554 .wp-block-cover .wp-block-cover-text:lang(th), .wp-block-button .wp-block-button__link:lang(th), .wp-block- quote cite:lang(th),554 .wp-block-cover .wp-block-cover-text:lang(th), .wp-block-button .wp-block-button__link:lang(th), .wp-block-search .wp-block-search__button:lang(th), .wp-block-quote cite:lang(th), 555 555 .wp-block-quote footer:lang(th), 556 556 .wp-block-quote .wp-block-quote__citation:lang(th), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(th), … … 570 570 h6:lang(vi), figcaption:lang(vi), 571 571 .gallery-caption:lang(vi), .editor-post-title__block .editor-post-title__input:lang(vi), .block-editor-default-block-appender textarea.block-editor-default-block-appender__content:lang(vi), .wp-block-paragraph.has-drop-cap:lang(vi):not(:focus)::first-letter, .wp-block-table:lang(vi), .wp-block-cover h2:lang(vi), 572 .wp-block-cover .wp-block-cover-text:lang(vi), .wp-block-button .wp-block-button__link:lang(vi), .wp-block- quote cite:lang(vi),572 .wp-block-cover .wp-block-cover-text:lang(vi), .wp-block-button .wp-block-button__link:lang(vi), .wp-block-search .wp-block-search__button:lang(vi), .wp-block-quote cite:lang(vi), 573 573 .wp-block-quote footer:lang(vi), 574 574 .wp-block-quote .wp-block-quote__citation:lang(vi), .wp-block-pullquote[data-type="core/pullquote"] .wp-block-pullquote__citation:lang(vi), … … 1005 1005 1006 1006 /** === Button === */ 1007 .wp-block-buttons { 1008 line-height: 1.2; 1009 } 1010 1007 1011 .wp-block-button .wp-block-button__link { 1008 line-height: inherit;1009 1012 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 1010 1013 font-size: 0.88889em; … … 1035 1038 .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color), .wp-block-button.is-style-outline:hover .wp-block-button__link:not(.has-text-color), .wp-block-button.is-style-outline:focus .wp-block-button__link:not(.has-text-color), .wp-block-button.is-style-outline:active .wp-block-button__link:not(.has-text-color) { 1036 1039 color: #0073aa; 1040 } 1041 1042 .wp-block-search .wp-block-search__button { 1043 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 1044 font-size: 0.88889em; 1045 font-weight: bold; 1046 border-radius: 5px; 1047 } 1048 1049 .wp-block-search .wp-block-search__button:not(.has-text-color) { 1050 color: #fff; 1051 } 1052 1053 .wp-block-search .wp-block-search__button:not(.has-background-color) { 1054 background: #0073aa; 1037 1055 } 1038 1056 … … 1606 1624 width: 100%; 1607 1625 } 1626 1627 /** === Post Author Block === */ 1628 .avatar, 1629 .wp-block-post-author__avatar img { 1630 border-radius: 100%; 1631 } -
twentynineteen/2.8/style-editor.scss
r207575 r223028 380 380 /** === Button === */ 381 381 382 .wp-block-buttons { 383 line-height: $font__line-height-heading; 384 } 385 382 386 .wp-block-button { 383 387 384 388 .wp-block-button__link { 385 line-height:inherit;386 389 @include font-family( $font__heading ); 387 390 font-size: $font__size-sm; … … 417 420 } 418 421 } 422 423 .wp-block-search { 424 .wp-block-search__button { 425 @include font-family( $font__heading ); 426 font-size: $font__size-sm; 427 font-weight: bold; 428 border-radius: 5px; 429 430 &:not(.has-text-color) { 431 color: #fff; 432 } 433 434 &:not(.has-background-color) { 435 background: $color__background-button; 436 } 437 } 438 } 439 419 440 420 441 /** === Blockquote === */ … … 1022 1043 } 1023 1044 } 1045 1046 /** === Post Author Block === */ 1047 1048 .avatar, 1049 .wp-block-post-author__avatar img { 1050 border-radius: 100%; 1051 } -
twentynineteen/2.8/style-rtl.css
r207575 r223028 6 6 Author URI: https://wordpress.org/ 7 7 Description: Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes. 8 Tested up to: 6. 48 Tested up to: 6.5 9 9 Requires at least: 4.7 10 10 Requires PHP: 5.2.4 11 Version: 2. 711 Version: 2.8 12 12 License: GNU General Public License v2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 5485 5485 } 5486 5486 5487 .entry .entry-content .wp-block-buttons { 5488 line-height: 1.2; 5489 } 5490 5487 5491 .entry .entry-content .wp-block-button .wp-block-button__link { 5488 5492 transition: background 150ms ease-in-out; … … 5490 5494 font-size: 0.88889em; 5491 5495 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 5492 line-height: 1.2;5493 5496 box-sizing: border-box; 5494 5497 font-weight: bold; … … 5496 5499 padding: 0.76rem 1rem; 5497 5500 outline: none; 5498 outline: none;5499 5501 } 5500 5502 … … 5511 5513 background: #111; 5512 5514 cursor: pointer; 5515 } 5516 5517 .entry .entry-content .wp-block-button .wp-block-button__link:hover:not(.has-background) { 5518 background: #111; 5513 5519 } 5514 5520 … … 5518 5524 outline: thin dotted; 5519 5525 outline-offset: -4px; 5526 } 5527 5528 .entry .entry-content .wp-block-button .wp-block-button__link:focus:not(.has-background) { 5529 background: #111; 5520 5530 } 5521 5531 -
twentynineteen/2.8/style.css
r207575 r223028 6 6 Author URI: https://wordpress.org/ 7 7 Description: Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes. 8 Tested up to: 6. 48 Tested up to: 6.5 9 9 Requires at least: 4.7 10 10 Requires PHP: 5.2.4 11 Version: 2. 711 Version: 2.8 12 12 License: GNU General Public License v2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 5497 5497 } 5498 5498 5499 .entry .entry-content .wp-block-buttons { 5500 line-height: 1.2; 5501 } 5502 5499 5503 .entry .entry-content .wp-block-button .wp-block-button__link { 5500 5504 transition: background 150ms ease-in-out; … … 5502 5506 font-size: 0.88889em; 5503 5507 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; 5504 line-height: 1.2;5505 5508 box-sizing: border-box; 5506 5509 font-weight: bold; … … 5508 5511 padding: 0.76rem 1rem; 5509 5512 outline: none; 5510 outline: none;5511 5513 } 5512 5514 … … 5523 5525 background: #111; 5524 5526 cursor: pointer; 5527 } 5528 5529 .entry .entry-content .wp-block-button .wp-block-button__link:hover:not(.has-background) { 5530 background: #111; 5525 5531 } 5526 5532 … … 5530 5536 outline: thin dotted; 5531 5537 outline-offset: -4px; 5538 } 5539 5540 .entry .entry-content .wp-block-button .wp-block-button__link:focus:not(.has-background) { 5541 background: #111; 5532 5542 } 5533 5543 -
twentynineteen/2.8/style.scss
r207575 r223028 5 5 Author URI: https://wordpress.org/ 6 6 Description: Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes. 7 Tested up to: 6. 47 Tested up to: 6.5 8 8 Requires at least: 4.7 9 9 Requires PHP: 5.2.4 10 Version: 2. 710 Version: 2.8 11 11 License: GNU General Public License v2 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.