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

Hover gap below media indicator #722

Merged
merged 3 commits into from
Jul 1, 2019
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
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