govuk_frontend_toolkit 7.0.0 → 7.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78b452b51c6d7bdb928111cdaf554ca4f2e7a084
4
- data.tar.gz: dfcdc53acdf0f0757b8536dd0eb992c0f95a7bb3
3
+ metadata.gz: af9dc292a7e5daf8d44844e8e000f259a9d48739
4
+ data.tar.gz: dfe54d9432d5bf8460317ac190fc311978ac2094
5
5
  SHA512:
6
- metadata.gz: 044d0927e1a0938a22583981cb17007d4b228d170e966423621a0a0804643a99348464c2addcd1b86e39da80241f9523e8a7119f9299a02aa932c966f79247bd
7
- data.tar.gz: 133d696715ec1c3e18509eff81eb85fcaa24542dff408833a489018a656d410dd87be04bdac593736cdff3cda0db6e66cf7ccc7d3bddeff9c1455f9420b27691
6
+ metadata.gz: 906834b30f186dbedfdc1f528c97fc9971a69434ba943094e8d2b44de529a42b8f3cf2099008abdfdcd6519d74a88f7fefa9861f59ee002671522ed5e65001b3
7
+ data.tar.gz: e840d89633db91d05f3c93728210bfc879e88d8e23229aac623bd57f7097e1eb565f916760a8d39693a7fd5ad182fde35832d75eec6e3af483afd358606f4e83
data/.travis.yml CHANGED
@@ -6,8 +6,8 @@ branches:
6
6
  before_install:
7
7
  - openssl aes-256-cbc -K $encrypted_839034082a06_key -iv $encrypted_839034082a06_iv -in .travis/govuk_frontend_toolkit_gem_push.enc -out ~/.ssh/id_rsa -d
8
8
  - chmod 600 ~/.ssh/id_rsa
9
- - git config --global user.name "Travis CI"
10
- - git config --global user.email "travis@travis-ci.org"
9
+ - git config --global user.name "GOV.UK Patterns & Tools CI User"
10
+ - git config --global user.email "patterns-and-tools-github-user@digital.cabinet-office.gov.uk"
11
11
  - git remote add origin_ssh git@github.com:alphagov/govuk_frontend_toolkit_gem.git
12
12
  install:
13
13
  - echo "No dependencies to install"
@@ -20,7 +20,4 @@ and RubyGems.
20
20
 
21
21
  The [Travis settings](https://travis-ci.org/alphagov/govuk_frontend_toolkit/settings)
22
22
  contains a Travis token that belongs to
23
- [@alexmuller](https://github.com/alexmuller) - as far as we
24
- can tell there's no way to generate one of these that isn't related to
25
- a specific user. This token could be replaced with a generic bot account
26
- if we created one.
23
+ [@govuk-patterns-and-tools-ci](https://github.com/govuk-patterns-and-tools-ci).
@@ -1,3 +1,7 @@
1
+ # 7.0.1
2
+
3
+ - Volume up and down buttons in the media player were overlapping the current volume percentage on focus. This fix keeps the large button touch area, but adjusts the focus state to be smaller. ([PR #429](https://github.com/alphagov/govuk_frontend_toolkit/pull/429)).
4
+
1
5
  # 7.0.0
2
6
 
3
7
  - Remove multivariate test library ([PR #420](https://github.com/alphagov/govuk_frontend_toolkit/pull/420)). If you need to continue using this library please copy the JavaScript and documentation from version 6.0.4 into your repository.
@@ -1 +1 @@
1
- 7.0.0
1
+ 7.0.1
@@ -110,7 +110,7 @@
110
110
  .mute {
111
111
  position: absolute;
112
112
  bottom: 0;
113
- left: 120px;
113
+ right: 0;
114
114
  height: 40px;
115
115
  width: 50px;
116
116
  padding-top: 1px;
@@ -141,7 +141,6 @@
141
141
  bottom: 0;
142
142
  height: 40px;
143
143
  width: 60px;
144
- padding-top: 2px;
145
144
  font-size: 24px;
146
145
  line-height: 40px;
147
146
  text-align: center;
@@ -150,6 +149,21 @@
150
149
  &:hover,
151
150
  &:focus {
152
151
  color: $light-blue;
152
+ background-color: transparent;
153
+ outline: none;
154
+
155
+ &:before {
156
+ background-color: $focus-colour;
157
+ }
158
+ }
159
+
160
+ &:before {
161
+ content: "";
162
+ display: inline-block;
163
+ position: absolute;
164
+ width: 50%;
165
+ height: 100%;
166
+ z-index: -1;
153
167
  }
154
168
  }
155
169
 
@@ -157,18 +171,26 @@
157
171
  text-align: left;
158
172
  padding-left: 10px;
159
173
  left: 0;
174
+
175
+ &:before {
176
+ left: 0;
177
+ }
160
178
  }
161
179
 
162
180
  .vol-up {
163
181
  text-align: right;
164
182
  padding-right: 10px;
165
- left: 60px;
183
+ left: 65px;
184
+
185
+ &:before {
186
+ right: 0;
187
+ }
166
188
  }
167
189
 
168
190
  .vol-display {
169
191
  position: absolute;
170
192
  bottom: 0;
171
- left: 20px;
193
+ left: 25px;
172
194
  height: 40px;
173
195
  width: 0;
174
196
  padding-left: 35px;
@@ -185,7 +207,7 @@
185
207
  .current-time {
186
208
  position: absolute;
187
209
  bottom: 0;
188
- left: 50px;
210
+ left: 45px;
189
211
  height: 40px;
190
212
  font-size: 14px;
191
213
  line-height: 40px;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govuk_frontend_toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Government Digital Service
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-13 00:00:00.000000000 Z
11
+ date: 2017-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties