cinqcinqdev-seo 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -1227,17 +1227,17 @@ export const computeBlockCss = (props, blockId) => {
|
|
|
1227
1227
|
const parts = [];
|
|
1228
1228
|
const titleSels = `${id} h1,${id} h2,${id} h3,${id} h4`;
|
|
1229
1229
|
const tr = [];
|
|
1230
|
-
if (s.titleFontSize) tr.push(`font-size:${s.titleFontSize}px`);
|
|
1231
|
-
if (s.titleFontWeight) tr.push(`font-weight:${s.titleFontWeight}`);
|
|
1232
|
-
if (s.titleFontStyle) tr.push(`font-style:${s.titleFontStyle}`);
|
|
1233
|
-
if (s.titleTextDecoration) tr.push(`text-decoration:${s.titleTextDecoration}`);
|
|
1234
|
-
if (s.titleColor) tr.push(`color:${s.titleColor}`);
|
|
1230
|
+
if (s.titleFontSize) tr.push(`font-size:${s.titleFontSize}px !important`);
|
|
1231
|
+
if (s.titleFontWeight) tr.push(`font-weight:${s.titleFontWeight} !important`);
|
|
1232
|
+
if (s.titleFontStyle) tr.push(`font-style:${s.titleFontStyle} !important`);
|
|
1233
|
+
if (s.titleTextDecoration) tr.push(`text-decoration:${s.titleTextDecoration} !important`);
|
|
1234
|
+
if (s.titleColor) tr.push(`color:${s.titleColor} !important`);
|
|
1235
1235
|
if (tr.length) parts.push(`${titleSels}{${tr.join(";")}}`);
|
|
1236
1236
|
const bodySels = `${id} p,${id} li`;
|
|
1237
1237
|
const br2 = [];
|
|
1238
|
-
if (s.bodyFontSize) br2.push(`font-size:${s.bodyFontSize}px`);
|
|
1239
|
-
if (s.bodyFontWeight) br2.push(`font-weight:${s.bodyFontWeight}`);
|
|
1240
|
-
if (s.bodyColor) br2.push(`color:${s.bodyColor}`);
|
|
1238
|
+
if (s.bodyFontSize) br2.push(`font-size:${s.bodyFontSize}px !important`);
|
|
1239
|
+
if (s.bodyFontWeight) br2.push(`font-weight:${s.bodyFontWeight} !important`);
|
|
1240
|
+
if (s.bodyColor) br2.push(`color:${s.bodyColor} !important`);
|
|
1241
1241
|
if (br2.length) parts.push(`${bodySels}{${br2.join(";")}}`);
|
|
1242
1242
|
const gr = [];
|
|
1243
1243
|
if (s.lineHeight) gr.push(`line-height:${s.lineHeight}`);
|