Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.8.6 #393

Merged
merged 13 commits into from
May 8, 2024
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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@ All notable changes to this project will be documented in this file, per [the Ke
### Security
-->

## [2.8.5] - 2023-04-22
## [2.8.6] - 2024-05-08

### Fixed

- Cannot use Brightcove block on custom post types. Props [@spacedmonkey](https://github.com/spacedmonkey) and [@jonnynews](https://github.com/jonnynews) via [#389](https://github.com/10up/brightcove-video-connect/pull/389).
- Typo when saving the language_detection attribute. Props [@claimableperc](https://github.com/claimableperc) via [#390](https://github.com/10up/brightcove-video-connect/pull/390).
- Combined queries with q search parameter. Props [@oscarssanchezz](https://github.com/oscarssanchezz) via [#392](https://github.com/10up/brightcove-video-connect/pull/392).

## [2.8.5] - 2024-04-22

### Changed
- Add Select field for labels. Props [@burhandodhy](https://github.com/burhandodhy) via [#378](https://github.com/10up/brightcove-video-connect/pull/378).
Expand Down Expand Up @@ -462,6 +470,7 @@ All notable changes to this project will be documented in this file, per [the Ke
- First release

[Unreleased]: https://github.com/10up/brightcove-video-connect/compare/master...develop
[2.8.6]: https://github.com/10up/brightcove-video-connect/compare/2.8.5...2.8.6
[2.8.5]: https://github.com/10up/brightcove-video-connect/compare/2.8.4...2.8.5
[2.8.4]: https://github.com/10up/brightcove-video-connect/compare/2.8.3...2.8.4
[2.8.3]: https://github.com/10up/brightcove-video-connect/compare/2.8.2...2.8.3
Expand Down
24 changes: 16 additions & 8 deletions assets/css/brightcove_playlist.css
Original file line number Diff line number Diff line change
@@ -1,36 +1,44 @@
.brightcove-playlist {
background-color: white;
padding: 20px 20px 10px 20px;
font-size: 80%; }
font-size: 80%;
}

h3.brightcove-playlist-title {
margin: 0 0 10px 0; }
margin: 0 0 10px 0;
}

.brightcove-playlist-item {
display: table;
margin-bottom: 20px;
border-top: 1px solid #eee;
padding-top: 20px;
width: 100%; }
width: 100%;
}

.brightcove-playlist-video-order-id {
display: table-cell;
vertical-align: middle;
width: 20px;
color: #999; }
color: #999;
}

.brightcove-playlist-video-thumbnail {
display: table-cell;
vertical-align: middle;
width: 40%;
padding-right: 20px; }
padding-right: 20px;
}

.brightcove-playlist-video-meta {
display: table-cell;
vertical-align: middle; }
vertical-align: middle;
}

h4.brightcove-playlist-video-title {
margin: 0; }
margin: 0;
}

.brightcove-playlist-videodescription {
margin: 0; }
margin: 0;
}
Loading
Loading