diff --git a/CHANGELOG.md b/CHANGELOG.md index a6c9bef..f041633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v1.1.0 +Features: +- Introduce full site editing support + ### v1.0.1 Fixes: - Remove erroneous version comparison diff --git a/amnesty-petitions.php b/amnesty-petitions.php index b04fad4..c0ccb0e 100644 --- a/amnesty-petitions.php +++ b/amnesty-petitions.php @@ -8,7 +8,7 @@ Plugin Name: Humanity Petitions Plugin URI: https://github.com/amnestywebsite/humanity-petitions Description: Enable petitions support, with interface for synchronising data to a CRM. CRM integrations not included. -Version: 1.0.1 +Version: 1.1.0 Author: Amnesty International Author URI: https://www.amnesty.org License: GPLv2 diff --git a/private/src/style.scss b/private/src/style.scss index 6bc64bc..b747527 100644 --- a/private/src/style.scss +++ b/private/src/style.scss @@ -166,6 +166,7 @@ } } + .petition-formExtra { display: flex; margin-bottom: 24px; @@ -242,3 +243,17 @@ iframe { border: none; } + +.fse .petition-title, +.fse .petition-subtitle, +.fse .petition-contentReveal dt { + font-family: var(--wp--preset--font-family--secondary); +} + +.fse .petition-formFill input { + font-family: var(--wp--preset--font-family--primary); + + @include placeholder { + font-family: var(--wp--preset--font-family--primary); + } +}