[wp-trac] [WordPress Trac] #58754: Fluid Font Sizes not working in 6.3 nightly
WordPress Trac
noreply at wordpress.org
Fri Aug 11 00:42:41 UTC 2023
#58754: Fluid Font Sizes not working in 6.3 nightly
--------------------------+---------------------
Reporter: jastos | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone: 6.3.1
Component: Editor | Version: 6.3
Severity: normal | Resolution:
Keywords: | Focuses:
--------------------------+---------------------
Comment (by jastos):
@rose18
I would take a look at the file above and see what was changed for 6.3.
The problem in my case was the June 20th commit:
https://github.com/WordPress/WordPress/commit/b4a8c95238e8e2eb4bcdefd169ab2166b2babfb8
{{{
$default_maximum_viewport_width = isset(
$layout_settings['wideSize'] ) ? $layout_settings['wideSize'] : '1600px';
}}}
I think using clamp must break the calculation somewhere. Changing back to
this lets clamp work again with a fluid layout:
{{{
$default_maximum_viewport_width = '1600px';
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/58754#comment:10>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list