-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cassettator-markers): css customization
Facilitates customization via CSS. It is no longer necessary to target the component class in order to redefine the CSS variable, thus improving the developer experience. In concrete terms, this means the following changes: - Before modification: ```css .cst-marker { --cst-marker-played-background-color: blue; } ``` - After modification: ```css .video-js { --cst-marker-played-background-color: blue; } ``` - remove the assignment of a default value to variables - add a new variable for the default background color - add documentation for the new variable
- Loading branch information
Showing
4 changed files
with
24 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "cassettator.js", | ||
"version": "0.69.42035", | ||
"version": "0.420.0", | ||
"description": "A collection of video.js components and plugins", | ||
"author": "amtins <[email protected]>", | ||
"license": "MIT", | ||
|
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