Skip to content

Commit

Permalink
Merge pull request #1182 from alphagov/release-2.7.0
Browse files Browse the repository at this point in the history
Release v2.7.0
  • Loading branch information
aliuk2012 authored Feb 8, 2019
2 parents c6d74a9 + c832b6c commit cea2dc2
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 17 deletions.
20 changes: 13 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,21 @@

([PR #N](https://github.com/alphagov/govuk-frontend/pull/N))

🔧 Fixes:

- Pull Request Title goes here

Description goes here (optional)

([PR #N](https://github.com/alphagov/govuk-frontend/pull/N))

## 2.7.0 (Feature release)

🆕 New features:

- Added config file for prototype kit.

Added a configuration file for an experimental feature in Prototype kit to allow departments to use their own frontend along side govuk-frontend
Added a configuration file for an experimental feature in Prototype kit to allow departments to use their own frontend alongside govuk-frontend

Thanks @matcarey (HMRC) for this contribution

Expand All @@ -38,12 +50,6 @@

🔧 Fixes:

- Pull Request Title goes here

Description goes here (optional)

([PR #N](https://github.com/alphagov/govuk-frontend/pull/N))

- Fix wrapping of long lines of text in summary list

Thanks to [@MoJ-Longbeard](https://github.com/MoJ-Longbeard) for raising the issue.
Expand Down
2 changes: 1 addition & 1 deletion dist/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.0
2.7.0
3 changes: 0 additions & 3 deletions dist/govuk-frontend-2.6.0.min.css

This file was deleted.

3 changes: 3 additions & 0 deletions dist/govuk-frontend-2.7.0.min.css

Large diffs are not rendered by default.

File renamed without changes.
3 changes: 0 additions & 3 deletions dist/govuk-frontend-ie8-2.6.0.min.css

This file was deleted.

3 changes: 3 additions & 0 deletions dist/govuk-frontend-ie8-2.7.0.min.css

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion package/components/summary-list/_summary-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,17 @@
}
}

.govuk-summary-list__key,
.govuk-summary-list__value {
// sass-lint:disable no-duplicate-properties
// Automatic wrapping for unbreakable text (e.g. URLs)
word-break: break-word; // WebKit/Blink only
word-break: break-all; // Standards
}

.govuk-summary-list__key {
margin-bottom: govuk-spacing(1);
@include govuk-typography-weight-bold;
word-break: break-word;
@include govuk-media-query($from: tablet) {
width: 30%;
}
Expand Down
7 changes: 7 additions & 0 deletions package/core/_template.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
// Set the overall page background colour to the same colour as used by the
// footer to give the illusion of a long footer.
background-color: $govuk-canvas-background-colour;

// Prevent automatic text sizing, as we already cater for small devices and
// would like the browser to stay on 100% text zoom by default.
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}

// Applied to the <body> element
Expand Down
2 changes: 1 addition & 1 deletion package/helpers/_links.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/// @example scss
/// .govuk-component__link {
/// @include govuk-link-common;
/// @include govuk-link-style-muted;
/// @include govuk-link-style-default;
/// }
///
/// @access public
Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "govuk-frontend",
"description": "GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.",
"version": "2.6.0",
"version": "2.7.0",
"main": "all.js",
"sass": "all.scss",
"engines": {
Expand Down

0 comments on commit cea2dc2

Please sign in to comment.