Skip to content

Commit

Permalink
Merge pull request #163 from bu-ist/2.0.2
Browse files Browse the repository at this point in the history
2.0.2
  • Loading branch information
rjfoleyiv authored Jul 12, 2018
2 parents c6a0dc4 + fdb82fb commit 5f15c7e
Show file tree
Hide file tree
Showing 25 changed files with 154 additions and 28 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog

## 2.0.1
## Unreleased

* Fixed a bug with the left hand nav layout and BU Banners [See related pull request](https://github.com/bu-ist/responsive-foundation/pull/154)
* Fixed a bug with the search box in IE [See related pull request](https://github.com/bu-ist/responsive-foundation/pull/156)
* Fixed a bug with the profile single photos [See related pull request](https://github.com/bu-ist/responsive-foundation/pull/159)
* Added snapchat icons [See related pull request](https://github.com/bu-ist/responsive-foundation/pull/160)

# 2.0.2

* BU Banner, Navigation and search styles updated.
* Audit and accessibility updates.
* Updates to the readme.
* Incorporated adjustments to line height for BU Hub Indicator.

# 2.0.1

* Adds support for BU Hub Indicator within Course Feeds.

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Full usage documentation can be found in the [visual style guide](https://bu-ist

After each major release, one version is maintained until everyone can be upgraded to the next major version. Currently, these versions are maintained for the purposes of hotfixes:

* 0.1.0
* 1.0.4
* Current
* 0.1.0.2
* 1.0.4.2
* 1.4.1
* 1.4.2
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "responsive-foundation",
"version": "2.0.0",
"version": "2.0.2",
"homepage": "https://github.com/bu-ist/responsive-foundation",
"authors": [
"Mike Burns <[email protected]>",
Expand All @@ -12,7 +12,8 @@
"Inder Singh <[email protected]>",
"Ashley Kolodziej <[email protected]>",
"Jon Desroisers <[email protected]>",
"Tom Dodson <[email protected]>"
"Tom Dodson <[email protected]>",
"Andrea Cacase <[email protected]>"
],
"description": "A front-end framework for developing responsive sites at Boston University.",
"main": [
Expand Down
2 changes: 1 addition & 1 deletion css-dev/burf-base/_config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -614,4 +614,4 @@ $color-hub: #767676;
/// @access public
/// @since 1.2.0

$border: 1px solid $color-grayscale-d !default;
$border: 1px solid $color-grayscale-d !default;
6 changes: 5 additions & 1 deletion css-dev/burf-base/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ $font-size-button: inherit !default;

/// Controls the background color used on default buttons and
/// things that looks like buttons across the site.
/// @accessibility AA
/// @group 01-config
/// @access public
/// @since 1.0.0
Expand All @@ -183,6 +184,7 @@ $color-button-bg: $color-grayscale-e !default;
/// @group 01-config
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-button-text: $color-grayscale-4 !default;

Expand All @@ -191,14 +193,16 @@ $color-button-text: $color-grayscale-4 !default;
/// @group 01-config
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-button-primary-bg: #0078e7 !default;
$color-button-primary-bg: #0074E0 !default;

/// Controls the text color used on primary buttons and
/// things that looks like buttons across the site.
/// @group 01-config
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-button-primary-text: $color-grayscale-f !default;

Expand Down
1 change: 1 addition & 0 deletions css-dev/burf-base/_normalize.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ $line-height-base: 1.6 !default;
/// @group 01-config
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-base: $color-grayscale-5 !default;

Expand Down
5 changes: 4 additions & 1 deletion css-dev/burf-base/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@ $table-border: $border !default;
/// @group 09-content
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-table-head: $color-heading !default;

/// Default background for table headings.
/// @group 09-content
/// @access public
/// @since 1.0.0
/// @accessibility AA

$table-head-bg: $color-grayscale-e !default;

Expand All @@ -48,8 +50,9 @@ $table-caption-padding: 0 0 10px !default;
/// @group 09-content
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-table-caption: $color-grayscale-9 !default;
$color-table-caption: $color-grayscale-6 !default;

/// Default background for striped table backgrounds.
/// @group 09-content
Expand Down
11 changes: 9 additions & 2 deletions css-dev/burf-base/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ $font-family-heading: $font-family-sans-serif !default;
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-heading: $color-grayscale-0 !default;

/// A font to use for small tags within headings.
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-heading-small: $color-grayscale-9 !default;
$color-heading-small: $color-grayscale-6 !default;

/// Base margin for HTML tags. Primarily affects `<p>`.
/// @group 04-typography
Expand All @@ -52,6 +54,7 @@ $font-margin-base: 0 0 1.5em 0 !default;
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-link: #0f69d7 !default;

Expand All @@ -61,6 +64,7 @@ $color-link: #0f69d7 !default;
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-link-visited: #7337af !default;

Expand All @@ -70,6 +74,7 @@ $color-link-visited: #7337af !default;
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-link-active: $color-grayscale-0 !default;

Expand All @@ -91,13 +96,15 @@ $font-margin-code: $margin 0 !default;
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-code: $color-grayscale-7 !default;
$color-code: $color-grayscale-6 !default;

/// Background color to use for the `<code>` tag.
/// @group 04-typography
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-code-bg: $color-grayscale-f5 !default;

Expand Down
27 changes: 27 additions & 0 deletions css-dev/burf-base/icons/_social.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
// reddit (two options)
// renren
// retweet
// snapchat (two options)
// soundcloud (two options)
// spotify
// stackexchange (two options)
Expand Down Expand Up @@ -393,6 +394,32 @@
@include icon( "retweet" );
}

/// The snapchat icon.
/// @example scss - Add the snapchat icon to a menu item
/// .menu-item {
/// @extend %icon-snapchat;
/// }
/// @group 03-icons
/// @access public
/// @since 2.0

%icon-snapchat {
@include icon( "snapchat" );
}

/// The alt snapchat icon.
/// @example scss - Add the alt snapchat icon to a menu item
/// .menu-item {
/// @extend %icon-snapchat-alt;
/// }
/// @group 03-icons
/// @access public
/// @since 2.0

%icon-snapchat-alt {
@include icon( "snapchat-alt" );
}

/// The soundcloud icon.
/// @example scss - Add the soundcloud icon to a menu item
/// .menu-item {
Expand Down
2 changes: 2 additions & 0 deletions css-dev/burf-base/icons/_supported.scss
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ $icons-responsive: (
reddit-alt: "\F617",
renren: "\F61C",
retweet: "\F600",
snapchat: "\F2AC",
snapchat-alt: "\F2AB",
soundcloud: "\F6B3",
soundcloud-alt: "\F6B4",
spotify: "\F6B1",
Expand Down
5 changes: 4 additions & 1 deletion css-dev/burf-theme/calendar/_calendar-archive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,23 @@
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-heading-date-range: $color-grayscale-9 !default;
$color-calendar-heading-date-range: $color-grayscale-6 !default;

/// Controls the color of links on the calendar listing template.
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-event-link: $color-link !default;

/// Controls the color of links on the calendar listing template when you hover.
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-event-link-hover: $color-link !default;

Expand Down
16 changes: 13 additions & 3 deletions css-dev/burf-theme/calendar/_calendar-picker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ $font-family-calendar-month-caption: $font-family-sans-serif !default;
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-caption: $color-grayscale-7 !default;
$color-calendar-month-caption: $color-grayscale-6 !default;

/// Controls the background of day cells in the calendar picker
/// in the sidebar of the calendar listing template.
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-th-bg: $color-grayscale-e !default;

Expand All @@ -31,6 +33,7 @@ $color-calendar-month-th-bg: $color-grayscale-e !default;
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-th: $color-grayscale-0 !default;

Expand All @@ -55,14 +58,16 @@ $font-family-calendar-month-cell: $font-family-sans-serif !default;
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-link: $color-link !default;
$color-calendar-month-link: $color-grayscale-6 !default;

/// Controls the color of links when you hover in the calendar picker
/// in the sidebar of the calendar listing template.
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-link-hover: $color-link !default;

Expand All @@ -72,6 +77,7 @@ $color-calendar-month-link-hover: $color-link !default;
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-link-out-bg: $color-grayscale-f5 !default;

Expand All @@ -81,14 +87,17 @@ $color-calendar-month-link-out-bg: $color-grayscale-f5 !default;
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-link-out: $color-grayscale-9 !default;
$color-calendar-month-link-out: $color-grayscale-6 !default;

/// Controls the background of the current day's link in the calendar picker
/// in the sidebar of the calendar listing template.
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @access
/// @accessibility AA

$color-calendar-month-link-today-bg: $color-grayscale-e !default;

Expand All @@ -97,6 +106,7 @@ $color-calendar-month-link-today-bg: $color-grayscale-e !default;
/// @group 13-calendar
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-calendar-month-link-today: $color-grayscale-0 !default;

Expand Down
3 changes: 3 additions & 0 deletions css-dev/burf-theme/calendar/_widget-calendar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ $font-family-widget-calendar-date: $font-family-sans-serif !default;
/// @group 10-widgets
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-widget-calendar-date: $color-grayscale-0 !default;

Expand All @@ -29,6 +30,7 @@ $font-size-widget-calendar-date-day: 22px !default;
/// @group 10-widgets
/// @access public
/// @since 1.0.0
/// @accessibility AA

$color-widget-calendar-date-day: inherit !default;

Expand All @@ -37,6 +39,7 @@ $color-widget-calendar-date-day: inherit !default;
/// @group 10-widgets
/// @access public
/// @since 1.0.0
/// @accessibility AA

$font-size-widget-calendar-date-month: 12px !default;

Expand Down
Loading

0 comments on commit 5f15c7e

Please sign in to comment.