Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v3.1.2 #563

Merged
merged 3 commits into from
Oct 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/govuk-elements-sass/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 3.1.2

- Update govuk_frontend_toolkit from v6.0.2 to v7.1.0:
- Remove the multivariate test library (not used in elements)
- Fix volume up and down buttons in the media player
- Promote the details polyfill to Frontend Toolkit
- Ensure the back link remains black when focussed ([PR #544](https://github.com/alphagov/govuk_elements/pull/544))
- Deprecate adding a tabindex to the main element ([PR #534](https://github.com/alphagov/govuk_elements/pull/534))

# 3.1.1

- Only make column headers bold, not row headers ([PR #483](https://github.com/alphagov/govuk_elements/pull/483))
Expand Down
2 changes: 1 addition & 1 deletion packages/govuk-elements-sass/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1
3.1.2
8 changes: 4 additions & 4 deletions packages/govuk-elements-sass/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "govuk-elements-sass",
"version": "3.1.1",
"version": "3.1.2",
"description": "GOVUK elements Sass files",
"repository": "alphagov/govuk_elements",
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"dependencies": {
"govuk_frontend_toolkit": "^6.0.2"
"govuk_frontend_toolkit": "^7.1.0"
},
"author": {
"name": "Government Digital Service developers",
"email": "govuk-dev@digital.cabinet-office.gov.uk"
"name": "GOV.UK Design System Team (Government Digital Service)",
"email": "design-system-developers@digital.cabinet-office.gov.uk"
},
"bugs": {
"url": "https://github.com/alphagov/govuk_elements/issues"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,12 @@ p,
&:link,
&:visited,
&:hover,
a#{&}:focus,
&:active {
color: $black;
}


text-decoration: none;
border-bottom: 1px solid $black;

Expand Down Expand Up @@ -234,7 +236,6 @@ p,
}

}

// Code styles
.code {
color: $text-colour;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
@include media(desktop) {
padding-bottom: $gutter * 3;
}
// Pressing enter when focus is on the skiplink sets focus on the #content area
// Remove the blue outline

// DEPRECATED: Tabindex on #content
// https://github.com/alphagov/govuk_elements/pull/534
// We no longer recommend using tabindex on #content
outline: none;
}

Expand Down