From 63c97c2b81e592fc84f00990c481102d00ceffde Mon Sep 17 00:00:00 2001 From: Brent Hardinge Date: Mon, 8 Jun 2020 09:20:12 -0400 Subject: [PATCH] Fixes for the intial quote on blockquotes and adding depth classes for comments. --- CHANGELOG.md | 6 ++++++ Gruntfile.js | 2 +- source/css/_base.text.scss | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0eb35a7b..c5bb86dd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ A record of the changes made to `ALPS V3`. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.5.4] +### Added: +- Added depth classes for comments. (For Wordpress). [#458](https://github.com/adventistchurch/alps/pull/458) + +### Fixed: +- Fixed the spacing before the blockquotes. ## [3.5.3] ### Added: diff --git a/Gruntfile.js b/Gruntfile.js index 749839e2d..b67bbf4f1 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -12,7 +12,7 @@ module.exports = function(grunt) { * of /cdn// that contains the javascript and css. */ var major_version = "3"; - var version = "3.5.3"; + var version = "3.5.4"; grunt.initConfig({ pkg: pkg, diff --git a/source/css/_base.text.scss b/source/css/_base.text.scss index 892330a9e..b4d8102b6 100644 --- a/source/css/_base.text.scss +++ b/source/css/_base.text.scss @@ -57,7 +57,7 @@ blockquote { &:before { content: "\201C"; position: absolute; - left: -$pad; + left: -$pad/1.5; top: 0; } }