Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Commit

Permalink
Hover gap below media indicator (#722)
Browse files Browse the repository at this point in the history
Hover gap below media indicator
  • Loading branch information
Drew McMillan authored Jul 1, 2019
2 parents 19abbce + 232451b commit bf5263f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions packages/components/psammead-media-indicator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- prettier-ignore -->
| Version | Description |
| ------- | ----------- |
| 1.0.2 | [PR#722](https://github.com/bbc/psammead/pull/722) Fix hover cap on older browsers |
| 1.0.1 | [PR#677](https://github.com/bbc/psammead/pull/677) Use `@bbc/[email protected]` |
| 1.0.0 | [PR#679](https://github.com/BBC-News/psammead/pull/679) Bump version number |
| 0.2.1 | [PR#644](https://github.com/BBC-News/psammead/pull/644) Fixes for screenreader UX |
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/psammead-media-indicator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/psammead-media-indicator",
"version": "1.0.1",
"version": "1.0.2",
"main": "dist/index.js",
"description": "Provides a play icon and media duration for media page promos",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ exports[`MediaIndicator should render audio correctly without duration details 1
.c0 {
padding: 0.5rem 0.25rem;
background-color: #FFFFFF;
display: inline-block;
display: block;
font-family: ReithSans,Helvetica,Arial,sans-serif;
font-size: 0.75rem;
line-height: 1rem;
Expand Down Expand Up @@ -92,7 +92,7 @@ exports[`MediaIndicator should render audio indicator correctly 1`] = `
.c0 {
padding: 0.5rem 0.25rem;
background-color: #FFFFFF;
display: inline-block;
display: block;
font-family: ReithSans,Helvetica,Arial,sans-serif;
font-size: 0.75rem;
line-height: 1rem;
Expand Down Expand Up @@ -174,7 +174,7 @@ exports[`MediaIndicator should render video by default 1`] = `
.c0 {
padding: 0.5rem 0.25rem;
background-color: #FFFFFF;
display: inline-block;
display: block;
font-family: ReithSans,Helvetica,Arial,sans-serif;
font-size: 0.75rem;
line-height: 1rem;
Expand Down Expand Up @@ -242,7 +242,7 @@ exports[`MediaIndicator should render video correctly without duration details 1
.c0 {
padding: 0.5rem 0.25rem;
background-color: #FFFFFF;
display: inline-block;
display: block;
font-family: ReithSans,Helvetica,Arial,sans-serif;
font-size: 0.75rem;
line-height: 1rem;
Expand Down Expand Up @@ -310,7 +310,7 @@ exports[`MediaIndicator should render video indicator correctly 1`] = `
.c0 {
padding: 0.5rem 0.25rem;
background-color: #FFFFFF;
display: inline-block;
display: block;
font-family: ReithSans,Helvetica,Arial,sans-serif;
font-size: 0.75rem;
line-height: 1rem;
Expand Down
2 changes: 1 addition & 1 deletion packages/components/psammead-media-indicator/src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import mediaIcons from './mediaIcons';
const MediaIndicatorWrapper = styled.div`
padding: ${GEL_SPACING} ${GEL_SPACING_HLF};
background-color: ${C_WHITE};
display: inline-block;
display: block;
font-family: ${GEL_FF_REITH_SANS};
${GEL_MINION};
color: ${C_EBON};
Expand Down

0 comments on commit bf5263f

Please sign in to comment.