Changeset 52335
- Timestamp:
- 12/07/2021 04:36:48 PM (3 years ago)
- Location:
- trunk/src/wp-content/themes/twentytwentytwo
- Files:
-
- 16 added
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentytwo/functions.php
r52222 r52335 127 127 * Preloads the main web font to improve performance. 128 128 * 129 * Only the main web font (font-style: normal) is preloaded here since that font is always relevant ( e.g. itused130 * on every heading ). The other font is only needed if there is any applicable content in italic style, and131 * therefore preloading it would in most cases regress performance when that font would otherwise not be loaded at132 * a ll.129 * Only the main web font (font-style: normal) is preloaded here since that font is always relevant (it is used 130 * on every heading, for example). The other font is only needed if there is any applicable content in italic style, 131 * and therefore preloading it would in most cases regress performance when that font would otherwise not be loaded 132 * at all. 133 133 * 134 134 * @since Twenty Twenty-Two 1.0 -
trunk/src/wp-content/themes/twentytwentytwo/style.css
r52222 r52335 66 66 } 67 67 68 .wp-block-file a.wp-block-file__button:hover { 69 opacity: 1; 70 } 68 /* 69 * Button hover styles. 70 * Necessary until the following issue is resolved in Gutenberg: 71 * https://github.com/WordPress/gutenberg/issues/27075 72 */ 73 74 .wp-block-search__button:hover, 75 .wp-block-file .wp-block-file__button:hover, 76 .wp-block-button__link:hover { 77 opacity: 0.90; 78 }
Note: See TracChangeset
for help on using the changeset viewer.