Skip to content
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
7 changes: 6 additions & 1 deletion src/assets/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ $icon-font-path: '../icon-font' !default;
&:focus,
&:focus:before {
outline: none;
text-shadow: 0 0 1em var(--color-text);
text-shadow:
0 0 0.1em var(--color-accent),
0 0 0.2em var(--color-accent),
0 0 0.3em var(--color-accent),
0 0 0.8em var(--color-text),
0 0 1em var(--color-text);
Comment on lines +41 to +46
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added some accent to our focus highlight following this feedback.
Didn't mean to push it to this PR but I'll let it slide...

}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class VideoSource extends BaseSource {
this.withCredentials = !!withCredentials;
this.getInitOptions = () => initOptions;

this.poster(poster);
this.poster(poster, options);
this.sourceTypes(sourceTypes);
this.sourceTransformation(sourceTransformation);
this.info(info);
Expand Down