Skip to content

Commit

Permalink
Updating to version 0.16.7
Browse files Browse the repository at this point in the history
  • Loading branch information
troychaplin committed Jan 14, 2020
1 parent fe4495f commit 1aba55d
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/config/sculpin_site.yml
@@ -1,7 +1,7 @@
# Site wide global vars - eg. {{ site.title }} can be used in templates
title: RDS Local
subtitle: RDS
version: 0.16.6
version: 0.16.7
cssSize: 45KB
cssG: 10KB
jsSize: 10KB
Expand Down
1 change: 1 addition & 0 deletions dist/0.16.7/rds-cu.css

Large diffs are not rendered by default.

Binary file added dist/0.16.7/rds-cu.css.gz
Binary file not shown.
1 change: 1 addition & 0 deletions dist/0.16.7/rds-cu.js

Large diffs are not rendered by default.

Binary file added dist/0.16.7/rds-cu.js.gz
Binary file not shown.
9 changes: 8 additions & 1 deletion dist/CHANGELOG.md
Expand Up @@ -2,7 +2,14 @@

All notable changes to the project will be documented here, in this file.

## [v0.16.5](https://github.com/ravendesignsystem/rds/releases/tag/0.16.5) 2020-01-13
## [v0.16.7](https://github.com/ravendesignsystem/rds/releases/tag/0.16.7) 2020-01-13

**Added**, **Changed**: Maintenance release with small patches

- **Added**: spacing above c-searchform if used inside the banner
- **Changed**: updated max-width of banner content section to match the max width of the small breakpoint used by the main content area

## [v0.16.6](https://github.com/ravendesignsystem/rds/releases/tag/0.16.6) 2020-01-13

**Fixed**: Maintenance release with small patches

Expand Down
11 changes: 10 additions & 1 deletion dist/_blocks/banner/_banner.scss
Expand Up @@ -65,6 +65,15 @@
margin-top: 10px;
}
}

.c-searchform {
min-width: #{map-get($breakpoints, s)};
margin-top: $block-padding-s;

@include media('>s') {
margin-top: $block-padding-m;
}
}
} // End b-banner

// need for Yoast plugin UGH!!
Expand Down Expand Up @@ -100,7 +109,7 @@

section {
z-index: 1;
max-width: #{map-get($breakpoints, s)};
max-width: calc(#{map-get($breakpoints, s)} + #{$block-padding-m} * 2);

@include media('>s') {
padding-left: 30px;
Expand Down
13 changes: 10 additions & 3 deletions dist/_core/scss/tools/_vars.scss
Expand Up @@ -16,7 +16,7 @@

// 0. RDS version
// --------------
$version: '0.16.6';
$version: '0.16.7';

// 1. Media query breakpoints
// --------------------------
Expand Down Expand Up @@ -56,10 +56,17 @@ $grey: #f3f3f3;
// CU digital red
$red: #bf112b;

// main link color
// Main link color
$link: #105f83;

$pink: #f9e6e9; // error bg color
// Other colors
$blue: #91d5ff; // info foreground
$light-blue: #e6f7ff; // info background
$pink: #f9e6e9; // error background
$green: #45bf2e; // success foreground
$light-green: #fafff5; // success background
$yellow: #faab08; // warning foreground
$light-yellow: #fffaf1; // warning background

// 50-44 shades of grey
// mostly for light bgs
Expand Down
2 changes: 1 addition & 1 deletion dist/package.json
@@ -1,6 +1,6 @@
{
"name": "@carleton/rds",
"version": "0.16.6",
"version": "0.16.7",
"description": "RDS, Carleton University’s design system, is a living digital organism uniting campus wide teams around a common visual language.",
"main": "core/js/core",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "rds",
"version": "0.16.6",
"version": "0.16.7",
"description": "Never more",
"main": "webpack.config.js",
"author": "Carleton University",
Expand Down
2 changes: 1 addition & 1 deletion src/_core/scss/tools/_vars.scss
Expand Up @@ -16,7 +16,7 @@

// 0. RDS version
// --------------
$version: '0.16.6';
$version: '0.16.7';

// 1. Media query breakpoints
// --------------------------
Expand Down
2 changes: 1 addition & 1 deletion webpack.release.js
Expand Up @@ -12,7 +12,7 @@ const path = require('path');
const S3Plugin = require('webpack-s3-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');

const version = '0.16.6';
const version = '0.16.7';

// Build Config
module.exports = {
Expand Down

0 comments on commit 1aba55d

Please sign in to comment.