From ed83b8dfe1592b49985b7529b9d0bc19bd9dd621 Mon Sep 17 00:00:00 2001 From: Ashley Nolan Date: Tue, 24 Oct 2017 15:11:12 +0100 Subject: [PATCH] v0.17.1 - Updating focus styling (#34) --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/scss/trumps/_utilities.scss | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88a7c45b..782f2eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +v0.17.1 +------------------------------ +*October 24, 2017* + +### Changed +- `:focus` state updated to be `2px solid` rather than `3px auto` by default. + + v0.17.0 ------------------------------ *October 20, 2017* diff --git a/package.json b/package.json index 8079ff01..5286ca8a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@justeat/fozzie", "title": "Fozzie – Just Eat UI Web Framework", "description": "UI Web Framework for the Just Eat Global Platform", - "version": "0.17.0", + "version": "0.17.1", "files": [ "src" ], diff --git a/src/scss/trumps/_utilities.scss b/src/scss/trumps/_utilities.scss index 209fce68..c4e307b4 100644 --- a/src/scss/trumps/_utilities.scss +++ b/src/scss/trumps/_utilities.scss @@ -152,5 +152,5 @@ /* Custom outline styling for elements that have a focus state */ %u-elementFocus, .u-elementFocus { - outline: 3px auto $color-focus-outline; + outline: 2px solid $color-focus-outline; }