forked from web-padawan/aybolit
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cxl-ui): [cxl-jw-player] rename playerId, playerSource to librar…
…yId, librarySource feat(cxl-ui): [cxl-jw-player] add hidden property style feat(cxl-ui): [cxl-jw-player] set container display and height feat(cxl-ui): [cxl-jw-player] fix playlist story feat(cxl-ui): [cxl-jw-player] fix playlist styles feat(cxl-ui): [cxl-jw-player] add next up CTA feat(cxl-ui): [cxl-jw-player] hide default next up overlay feat(cxl-ui): [cxl-jw-player] add pointer events to the link not the container feat(cxl-ui): [cxl-jw-player] move next up styles to the global directory feat(cxl-ui): [cxl-jw-player] refactor private methods and properties to protected feat(cxl-ui): [cxl-jw-player] refactor for playlists feat(cxl-ui): [cxl-jw-player] move styles to global directory feat(cxl-ui): [cxl-jw-player] remove save position endpoint request feat(cxl-ui): [cxl-jw-player] add the ability to save the playback rate feat(cxl-ui): [cxl-jw-player] add the ability to play protected content feat(cxl-ui): [cxl-jw-player] fix media and playlist source url feat(cxl-ui): [cxl-jw-player] fix and improve next up feature feat(cxl-ui): [cxl-jw-player] remove api secret default value feat(cxl-ui): [cxl-jw-player] fix save position when using a playlist
- Loading branch information
Showing
23 changed files
with
455 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
packages/cxl-ui/scss/global/cxl-jw-player/cxl-jw-player-nextup.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
cxl-jw-player { | ||
.jw-nextup-container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-end; | ||
|
||
.jw-nextup-cta { | ||
max-width: 400px; | ||
width: 64%; | ||
|
||
a { | ||
pointer-events: all; | ||
|
||
vaadin-button { | ||
width: 100%; | ||
} | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
25 changes: 25 additions & 0 deletions
25
packages/cxl-ui/scss/global/cxl-jw-player/cxl-jw-player.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
cxl-jw-player { | ||
.jw-player-button { | ||
width: 32px; | ||
fill: rgba(255, 255, 255, 0.8); | ||
|
||
&:hover { | ||
fill: rgba(255, 255, 255, 1); | ||
} | ||
} | ||
|
||
.jw-related-item { | ||
height: 100% !important; /* stylelint-disable-line declaration-no-important */ | ||
} | ||
|
||
.jwplayer:not(.jw-flag-small-player) .jw-related-item-next-up { | ||
.jw-related-item-poster { | ||
height: 100%; | ||
} | ||
|
||
.jw-related-item-title { | ||
position: absolute; | ||
bottom: 0; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.