Changes between Initial Version and Version 1 of Ticket #58475
- Timestamp:
- 06/07/2023 08:28:10 PM (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58475
- Property Focuses css added
-
Property
Summary
changed from
TT3 Aubergine variation: background implementation causes any block that impacts page height to impact header
toTwenty Twenty-Three: Aubergine variation's background implementation causes any block that impacts page height to impact header
-
Ticket #58475 – Description
initial v1 1 Originally reported here and moving over: https://github.com/WordPress/gutenberg/issues/51248 This variation does the following for the background:1 Originally reported here and moving over: GB51248 2 2 3 This variation does the following for the background: 3 4 4 5 {{{ … … 6 7 }}} 7 8 8 As Justin notes, in particular, the min(24rem, 10%) is essentially saying to use the lower value (either 24rem or 10%). On pages with little content, it is pretty much guaranteed to be 10% of the <body>height.9 As Justin notes, in particular, the `min(24rem, 10%)` is essentially saying to use the lower value (either `24rem` or `10%`). On pages with little content, it is pretty much guaranteed to be 10% of the `<body>` height. 9 10 10 11 As a result, any block that can change the page height will run into issues.