Add little effect on hover for the play button

pull/267/head
Chocobozzz 2018-01-29 16:45:29 +01:00
parent 13fb4de93b
commit 80d1057bfc
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 9 additions and 1 deletions

View File

@ -7,7 +7,7 @@
<form role="form" (ngSubmit)="login()" [formGroup]="form">
<div class="form-group">
<label for="username">Username or email address</label>
<label for="username">User</label>
<input
type="text" id="username" placeholder="Username or email address" required
formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }"

View File

@ -42,6 +42,14 @@ $control-bar-height: 34px;
border: 0;
padding: 0
}
.vjs-icon-placeholder::before {
transition: text-shadow 0.3s;
}
&:hover .vjs-icon-placeholder::before {
text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}
}
&.vjs-has-started .vjs-big-play-button {