PluginProbe
Extendify / 0.2.0
Extendify v0.2.0
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / utility-framework / fallback / font-sizes.css

font-sizes.css in Extendify 0.2.0, at utility-framework/fallback/font-sizes.css

37 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .has-gigantic-font-size,
2 .editor-styles-wrapper .has-gigantic-font-size.wp-block {
3 /* no suggestion */
4 /* Have to be specific for how Neve targets headings */
5 --fallback-size: clamp(
6 var(--wp--preset--font-size--huge, 22px),
7 calc(1rem + var(--wp--custom--typography--gigantic--preferred, 5vw)),
8 var(--wp--preset--font-size--huge, 42px) * 2
9 );
10 font-size: var(--wp--preset--font-size--gigantic, var(--fallback-size));
11 }
12
13 .has-ext-small-font-size {
14 /* no suggestion */
15 font-size: var(--wp--preset--font-size--ext-small) !important;
16 }
17
18 .has-ext-medium-font-size {
19 /* no suggestion */
20 font-size: var(--wp--preset--font-size--ext-medium) !important;
21 }
22
23 .has-ext-large-font-size {
24 /* no suggestion */
25 font-size: var(--wp--preset--font-size--ext-large) !important;
26 }
27
28 .has-ext-x-large-font-size {
29 /* no suggestion */
30 font-size: var(--wp--preset--font-size--ext-x-large) !important;
31 }
32
33 .has-ext-gigantic-font-size {
34 /* no suggestion */
35 font-size: var(--wp--preset--font-size--ext-gigantic) !important;
36 }
37