Skip to content

Commit

Permalink
Merge pull request #575 from adventistchurch/#87-New_design_of_ALPS_Q…
Browse files Browse the repository at this point in the history
…uote_block

87 - New design of ALPS Quote block. Prepare for release.
  • Loading branch information
YauheniKapliarchuk authored Nov 2, 2022
2 parents 9c89f3c + 53d7f68 commit ed23286
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ 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.11.9]
New design of ALPS Quote block [story](https://app.zenhub.com/workspaces/alps---core-and-wp-583365a5f9e6361b5cc5f5f6/issues/adventistchurch/alps-gutenberg-blocks/87)

## [3.11.8]
Update styles for menu. Need for internationalization in menu. Version 3.11.7 was skipped.

Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function (grunt) {
* of /cdn/<major_version/<version>/ that contains the javascript and css.
*/
const major_version = "3";
const version = "3.11.8";
const version = "3.11.9";

/**
* Split SCSS files by theme
Expand Down
16 changes: 11 additions & 5 deletions source/css/_base.text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,28 @@ blockquote {
text-align: left;
position: relative;
quotes: "" "" "" "";
padding-left: $pad;
display: flex;
flex-direction: column;

@include media("<medium") {
padding-left: $pad;
}

@include media(">medium") {
border-left: 2px solid $c-black;
//border-left: 2px solid $c-black;
}

p {
font-size: rem(16);
line-height: 1.3;
font-size: rem(20);
line-height: rem(31);
position: relative;
z-index: 10;
text-indent: $pad;
margin-top: $space;
font-family: $ff-font;
font-family: $ff-font--primary;
font-style: normal;
font-weight: 400;
color: #4A4A4A;

&:first-child {
margin-top: 0;
Expand Down
17 changes: 13 additions & 4 deletions source/css/_objects.text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -697,12 +697,21 @@ ul:not(.c-breadcrumbs__list):not(.o-inline-list) {

.o-citation {
display: block;
font-style: normal;
text-transform: uppercase;
font-style: italic;
//text-transform: uppercase;
margin-top: $space / 2;
font-weight: bold;
font-weight: 600;

@include u-font--secondary--s;
font-family: $ff-font--primary;
font-size: rem(22);
line-height: rem(34);

padding: rem(25) 0 rem(25) rem(20);

@include media(">large") {
font-size: rem(25);
}
//@include u-font--secondary--s;
}

/**
Expand Down

0 comments on commit ed23286

Please sign in to comment.