diff --git a/style_properties.less b/style_properties.less index 3b96877..15eb29c 100644 --- a/style_properties.less +++ b/style_properties.less @@ -23,6 +23,7 @@ @xf-contentAltBg: @xf-paletteColor3; @xf-contentBg: @xf-paletteColor2; @xf-contentHighlightBg: @xf-paletteColor3; +@xf-emailPublicLogoUrl: ~'data/assets/email_logo/plaza-logo.webp'; @xf-errorBg: #e57373; @xf-errorColor: @xf-paletteNeutral1; @xf-fontFamilyBody: 'Segoe UI', 'San Francisco', 'Helvetica Neue', sans-serif; @@ -63,11 +64,35 @@ @xf-textColorFeature: @xf-paletteNeutral1; @xf-textColorMuted: @xf-paletteNeutral2; +.xf-blockMinorHeader() +{ + font-size: @xf-fontSizeLarge; + color: @xf-textColor; +} + +.xf-blockMinorTabHeaderSelected() +{ + color: @xf-textColor; + border-color: @xf-minorHeadingTextColor; +} + .xf-blockTabHeaderSelected() { color: @xf-linkColor; border-color: @xf-paletteColor2; } +.xf-blockTextHeader() +{ + font-size: @xf-fontSizeLarge; + color: @xf-textColor; +} + +@xf-blockMinorHeader--font-size: @xf-fontSizeLarge; +@xf-blockMinorHeader--color: @xf-textColor; +@xf-blockMinorTabHeaderSelected--color: @xf-textColor; +@xf-blockMinorTabHeaderSelected--border-color: @xf-minorHeadingTextColor; @xf-blockTabHeaderSelected--color: @xf-linkColor; @xf-blockTabHeaderSelected--border-color: @xf-paletteColor2; +@xf-blockTextHeader--font-size: @xf-fontSizeLarge; +@xf-blockTextHeader--color: @xf-textColor; diff --git a/style_properties/_metadata.json b/style_properties/_metadata.json index 90a19ae..ea503f4 100644 --- a/style_properties/_metadata.json +++ b/style_properties/_metadata.json @@ -1,4 +1,10 @@ { + "blockMinorHeader.json": { + "hash": "7731a8c090a6de368ba735f3cfdc973d" + }, + "blockMinorTabHeaderSelected.json": { + "hash": "f40116bfcc55ac8be7b1dcc646efc37a" + }, "blockTabHeaderBg.json": { "hash": "f548168a30a1d58f885379c826512664" }, @@ -8,6 +14,9 @@ "blockTabHeaderTextColor.json": { "hash": "60987b64d0d5440a964a29356f62c9a6" }, + "blockTextHeader.json": { + "hash": "2632f59dbe2d84a048a962dc57ce3be9" + }, "borderColor.json": { "hash": "188643a00ec1edff6b6c9a56ac2ee460" }, @@ -68,6 +77,9 @@ "contentHighlightBg.json": { "hash": "3f25b8f5a6851ecae0eaf5e3791c9cd9" }, + "emailPublicLogoUrl.json": { + "hash": "a47025c3de1bbb9bc269501d9a13fcae" + }, "errorBg.json": { "hash": "0640f2a117475e7615a8004007937f3a" }, diff --git a/style_properties/blockMinorHeader.json b/style_properties/blockMinorHeader.json new file mode 100644 index 0000000..8197083 --- /dev/null +++ b/style_properties/blockMinorHeader.json @@ -0,0 +1,22 @@ +{ + "group_name": "block", + "title": "Block minor header", + "description": "Sub-headings in blocks use these settings", + "property_type": "css", + "css_components": [ + "text", + "background", + "border", + "extra" + ], + "value_type": "", + "value_parameters": "", + "has_variations": false, + "depends_on": "", + "value_group": "", + "property_value": { + "font-size": "@xf-fontSizeLarge", + "color": "@xf-textColor" + }, + "display_order": 20400 +} \ No newline at end of file diff --git a/style_properties/blockMinorTabHeaderSelected.json b/style_properties/blockMinorTabHeaderSelected.json new file mode 100644 index 0000000..eaf76cc --- /dev/null +++ b/style_properties/blockMinorTabHeaderSelected.json @@ -0,0 +1,22 @@ +{ + "group_name": "block", + "title": "Block minor tab header - selected tab", + "description": "Selected tabs from block sub-headings", + "property_type": "css", + "css_components": [ + "text", + "background", + "border_color_simple", + "extra" + ], + "value_type": "", + "value_parameters": "", + "has_variations": false, + "depends_on": "", + "value_group": "", + "property_value": { + "color": "@xf-textColor", + "border-color": "@xf-minorHeadingTextColor" + }, + "display_order": 20600 +} \ No newline at end of file diff --git a/style_properties/blockTextHeader.json b/style_properties/blockTextHeader.json new file mode 100644 index 0000000..3a4e141 --- /dev/null +++ b/style_properties/blockTextHeader.json @@ -0,0 +1,22 @@ +{ + "group_name": "block", + "title": "Block text header", + "description": "Text headers are used for subtle identification of content areas, without changing the background style or color", + "property_type": "css", + "css_components": [ + "text", + "background", + "border", + "extra" + ], + "value_type": "", + "value_parameters": "", + "has_variations": false, + "depends_on": "", + "value_group": "", + "property_value": { + "font-size": "@xf-fontSizeLarge", + "color": "@xf-textColor" + }, + "display_order": 20700 +} \ No newline at end of file diff --git a/style_properties/emailPublicLogoUrl.json b/style_properties/emailPublicLogoUrl.json new file mode 100644 index 0000000..58e8f67 --- /dev/null +++ b/style_properties/emailPublicLogoUrl.json @@ -0,0 +1,14 @@ +{ + "group_name": "email", + "title": "Email logo URL", + "description": "Defines the logo URL to be used in emails. We do not recommend specifying SVG images here.", + "property_type": "value", + "css_components": [], + "value_type": "string", + "value_parameters": "asset=email_logo", + "has_variations": false, + "depends_on": "", + "value_group": "", + "property_value": "data/assets/email_logo/plaza-logo.webp", + "display_order": 50 +} \ No newline at end of file diff --git a/templates/_metadata.json b/templates/_metadata.json index 2e8552d..4754af1 100644 --- a/templates/_metadata.json +++ b/templates/_metadata.json @@ -3,7 +3,7 @@ "addon_id": "XF", "version_id": 2031070, "version_string": "2.3.10", - "hash": "09489ca3208db67cf6add9779edd76be" + "hash": "fe120070b080c42ea99ad31622baa0d5" }, "public/account_alerts_popup.html": { "addon_id": "XF", @@ -39,7 +39,7 @@ "addon_id": "XF", "version_id": 2031070, "version_string": "2.3.10", - "hash": "278b91ff307ed1d1c634eee490ff8653" + "hash": "3e8d3229f5dd7752871a1be1ca03e2ab" }, "public/member_tooltip.html": { "addon_id": "XF", @@ -75,6 +75,6 @@ "addon_id": "RomhackPlaza/Master", "version_id": 1010170, "version_string": "1.1.1", - "hash": "284f227e9f4c33c9a0e69f8a9cd52706" + "hash": "47e3ddab51eb7ba2077a514c54850ee1" } } \ No newline at end of file diff --git a/templates/public/PAGE_CONTAINER.html b/templates/public/PAGE_CONTAINER.html index b578298..ce1aa93 100644 --- a/templates/public/PAGE_CONTAINER.html +++ b/templates/public/PAGE_CONTAINER.html @@ -262,6 +262,17 @@ + + + + +
- + - + @@ -16,13 +16,13 @@ - + - + - + @@ -92,7 +92,7 @@ - @@ -143,11 +143,9 @@
-