Changeset 62510
- Timestamp:
- 06/16/2026 06:20:55 PM (28 hours ago)
- Location:
- trunk/src/wp-content/themes/twentynineteen
- Files:
-
- 6 edited
-
package-lock.json (modified) (4 diffs)
-
postcss.config.js (modified) (2 diffs)
-
sass/site/header/_site-featured-image.scss (modified) (1 diff)
-
style-editor.css (modified) (1 diff)
-
style-rtl.css (modified) (15 diffs)
-
style.css (modified) (15 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentynineteen/package-lock.json
r62344 r62510 312 312 }, 313 313 "node_modules/baseline-browser-mapping": { 314 "version": "2. 8.25",315 "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2. 8.25.tgz",316 "integrity": "sha512- 2NovHVesVF5TXefsGX1yzx1xgr7+m9JQenvz6FQY3qd+YXkKkYiv+vTCc7OriP9mcDZpTC5mAOYN4ocd29+erA==",314 "version": "2.10.35", 315 "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.35.tgz", 316 "integrity": "sha512-honAfLBde0HAFLdNyBEfuuENkF6zR+ozxqxa/2zJKHBe1qzLqyTSeRKpdPEHAP03rlDGyQOPnCSxnVpVqQo9Mg==", 317 317 "dev": true, 318 318 "license": "Apache-2.0", 319 319 "bin": { 320 "baseline-browser-mapping": "dist/cli.js" 320 "baseline-browser-mapping": "dist/cli.cjs" 321 }, 322 "engines": { 323 "node": ">=6.0.0" 321 324 } 322 325 }, … … 484 487 }, 485 488 "node_modules/caniuse-lite": { 486 "version": "1.0.300017 54",487 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.300017 54.tgz",488 "integrity": "sha512- x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==",489 "version": "1.0.30001799", 490 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz", 491 "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==", 489 492 "dev": true, 490 493 "funding": [ … … 4119 4122 }, 4120 4123 "baseline-browser-mapping": { 4121 "version": "2. 8.25",4122 "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2. 8.25.tgz",4123 "integrity": "sha512- 2NovHVesVF5TXefsGX1yzx1xgr7+m9JQenvz6FQY3qd+YXkKkYiv+vTCc7OriP9mcDZpTC5mAOYN4ocd29+erA==",4124 "version": "2.10.35", 4125 "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.35.tgz", 4126 "integrity": "sha512-honAfLBde0HAFLdNyBEfuuENkF6zR+ozxqxa/2zJKHBe1qzLqyTSeRKpdPEHAP03rlDGyQOPnCSxnVpVqQo9Mg==", 4124 4127 "dev": true 4125 4128 }, … … 4239 4242 }, 4240 4243 "caniuse-lite": { 4241 "version": "1.0.300017 54",4242 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.300017 54.tgz",4243 "integrity": "sha512- x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==",4244 "version": "1.0.30001799", 4245 "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz", 4246 "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==", 4244 4247 "dev": true 4245 4248 }, -
trunk/src/wp-content/themes/twentynineteen/postcss.config.js
r55458 r62510 1 1 var postcssFocusWithin = require('postcss-focus-within'); 2 3 module.exports = { 4 plugins: { 5 autoprefixer: {} 6 } 7 }; 2 var autoprefixer = require('autoprefixer'); 8 3 9 4 module.exports = { … … 11 6 postcssFocusWithin({ 12 7 disablePolyfillReadyClass: true 13 }) 8 }), 9 autoprefixer() 14 10 ] 15 11 }; -
trunk/src/wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss
r58290 r62510 61 61 .social-navigation svg, 62 62 .site-featured-image svg { 63 /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */ 64 -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35) ); 65 filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35) ); 63 filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35) ); 66 64 } 67 65 -
trunk/src/wp-content/themes/twentynineteen/style-editor.css
r62112 r62510 1483 1483 text-align: left; 1484 1484 text-align: center; 1485 -webkit-margin-start: 0;1486 1485 margin-inline-start: 0; 1487 1486 } -
trunk/src/wp-content/themes/twentynineteen/style-rtl.css
r62344 r62510 1956 1956 text-decoration: underline; 1957 1957 /* 2 */ 1958 text-decoration: underline dotted; 1958 -webkit-text-decoration: underline dotted; 1959 text-decoration: underline dotted; 1959 1960 /* 2 */ 1960 1961 } … … 2397 2398 .comments-title, 2398 2399 blockquote { 2399 -webkit-hyphens: auto;2400 -moz-hyphens: auto;2401 -ms-hyphens: auto;2402 2400 hyphens: auto; 2403 2401 word-break: break-word; … … 2408 2406 @media only screen and (min-width: 768px) { 2409 2407 .entry-title { 2410 -webkit-hyphens: none;2411 -moz-hyphens: none;2412 -ms-hyphens: none;2413 2408 hyphens: none; 2414 2409 } … … 2479 2474 html { 2480 2475 box-sizing: border-box; 2481 }2482 2483 ::-moz-selection {2484 background-color: #bfdcea;2485 2476 } 2486 2477 … … 2921 2912 .main-navigation .sub-menu { 2922 2913 width: auto; 2923 min-width: -moz-max-content;2924 min-width: -webkit-max-content;2925 2914 min-width: max-content; 2926 2915 } … … 3037 3026 bottom: auto; 3038 3027 height: auto; 3039 min-width: -moz-max-content;3040 min-width: -webkit-max-content;3041 3028 min-width: max-content; 3042 3029 transform: none; … … 3052 3039 bottom: auto; 3053 3040 height: auto; 3054 min-width: -moz-max-content;3055 min-width: -webkit-max-content;3056 3041 min-width: max-content; 3057 3042 transform: none; … … 3176 3161 bottom: auto; 3177 3162 height: auto; 3178 min-width: -moz-max-content;3179 min-width: -webkit-max-content;3180 3163 min-width: max-content; 3181 3164 transform: none; … … 3468 3451 .post-navigation .nav-links a .meta-nav { 3469 3452 color: #767676; 3470 user-select: none; 3453 -webkit-user-select: none; 3454 user-select: none; 3471 3455 } 3472 3456 … … 3757 3741 .site-branding { 3758 3742 color: #767676; 3759 -webkit-hyphens: auto;3760 -moz-hyphens: auto;3761 -ms-hyphens: auto;3762 3743 hyphens: auto; 3763 3744 position: relative; … … 3958 3939 .site-header.featured-image .social-navigation svg, 3959 3940 .site-header.featured-image .site-featured-image svg { 3960 /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */3961 -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));3962 3941 filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)); 3963 3942 } … … 4158 4137 } 4159 4138 4160 .site-header.featured-image ::-moz-selection {4161 background: rgba(255, 255, 255, 0.17);4162 }4163 4164 4139 .site-header.featured-image ::selection { 4165 4140 background: rgba(255, 255, 255, 0.17); … … 4558 4533 4559 4534 .comments-area { 4560 -webkit-hyphens: auto;4561 -moz-hyphens: auto;4562 -ms-hyphens: auto;4563 4535 hyphens: auto; 4564 4536 margin: calc(2 * 1rem) 1rem; … … 5089 5061 5090 5062 #colophon .widget-column .widget { 5091 -webkit-hyphens: auto;5092 -moz-hyphens: auto;5093 -ms-hyphens: auto;5094 5063 hyphens: auto; 5095 5064 width: 100%; … … 5106 5075 #colophon .site-info { 5107 5076 color: #767676; 5108 -webkit-hyphens: auto;5109 -moz-hyphens: auto;5110 -ms-hyphens: auto;5111 5077 hyphens: auto; 5112 5078 word-wrap: break-word; -
trunk/src/wp-content/themes/twentynineteen/style.css
r62344 r62510 1956 1956 text-decoration: underline; 1957 1957 /* 2 */ 1958 text-decoration: underline dotted; 1958 -webkit-text-decoration: underline dotted; 1959 text-decoration: underline dotted; 1959 1960 /* 2 */ 1960 1961 } … … 2397 2398 .comments-title, 2398 2399 blockquote { 2399 -webkit-hyphens: auto;2400 -moz-hyphens: auto;2401 -ms-hyphens: auto;2402 2400 hyphens: auto; 2403 2401 word-break: break-word; … … 2408 2406 @media only screen and (min-width: 768px) { 2409 2407 .entry-title { 2410 -webkit-hyphens: none;2411 -moz-hyphens: none;2412 -ms-hyphens: none;2413 2408 hyphens: none; 2414 2409 } … … 2479 2474 html { 2480 2475 box-sizing: border-box; 2481 }2482 2483 ::-moz-selection {2484 background-color: #bfdcea;2485 2476 } 2486 2477 … … 2921 2912 .main-navigation .sub-menu { 2922 2913 width: auto; 2923 min-width: -moz-max-content;2924 min-width: -webkit-max-content;2925 2914 min-width: max-content; 2926 2915 } … … 3037 3026 bottom: auto; 3038 3027 height: auto; 3039 min-width: -moz-max-content;3040 min-width: -webkit-max-content;3041 3028 min-width: max-content; 3042 3029 transform: none; … … 3052 3039 bottom: auto; 3053 3040 height: auto; 3054 min-width: -moz-max-content;3055 min-width: -webkit-max-content;3056 3041 min-width: max-content; 3057 3042 transform: none; … … 3176 3161 bottom: auto; 3177 3162 height: auto; 3178 min-width: -moz-max-content;3179 min-width: -webkit-max-content;3180 3163 min-width: max-content; 3181 3164 transform: none; … … 3468 3451 .post-navigation .nav-links a .meta-nav { 3469 3452 color: #767676; 3470 user-select: none; 3453 -webkit-user-select: none; 3454 user-select: none; 3471 3455 } 3472 3456 … … 3763 3747 .site-branding { 3764 3748 color: #767676; 3765 -webkit-hyphens: auto;3766 -moz-hyphens: auto;3767 -ms-hyphens: auto;3768 3749 hyphens: auto; 3769 3750 position: relative; … … 3964 3945 .site-header.featured-image .social-navigation svg, 3965 3946 .site-header.featured-image .site-featured-image svg { 3966 /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */3967 -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));3968 3947 filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)); 3969 3948 } … … 4164 4143 } 4165 4144 4166 .site-header.featured-image ::-moz-selection {4167 background: rgba(255, 255, 255, 0.17);4168 }4169 4170 4145 .site-header.featured-image ::selection { 4171 4146 background: rgba(255, 255, 255, 0.17); … … 4564 4539 4565 4540 .comments-area { 4566 -webkit-hyphens: auto;4567 -moz-hyphens: auto;4568 -ms-hyphens: auto;4569 4541 hyphens: auto; 4570 4542 margin: calc(2 * 1rem) 1rem; … … 5095 5067 5096 5068 #colophon .widget-column .widget { 5097 -webkit-hyphens: auto;5098 -moz-hyphens: auto;5099 -ms-hyphens: auto;5100 5069 hyphens: auto; 5101 5070 width: 100%; … … 5112 5081 #colophon .site-info { 5113 5082 color: #767676; 5114 -webkit-hyphens: auto;5115 -moz-hyphens: auto;5116 -ms-hyphens: auto;5117 5083 hyphens: auto; 5118 5084 word-wrap: break-word;
Note: See TracChangeset
for help on using the changeset viewer.