small fixes for clarity
This commit is contained in:
parent
111bfeeb7a
commit
666b91b3c7
2 changed files with 12 additions and 0 deletions
|
@ -177,6 +177,15 @@
|
|||
pointer-events: all;
|
||||
}
|
||||
|
||||
.noUi-handle:focus{
|
||||
/* background: red;; */
|
||||
border: solid 2px #601be0;
|
||||
|
||||
}
|
||||
/* .noUi-handle:focus::before, .noUi-handle:focus::after{
|
||||
background: #601be0;
|
||||
} */
|
||||
|
||||
.tags .tag span {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
|
|
|
@ -178,6 +178,9 @@ class Annotator extends EventTarget {
|
|||
this.playPauseEl.addEventListener("click", (ev) => {
|
||||
this.playPause()
|
||||
})
|
||||
this.playPauseEl.addEventListener('keydown',(ev) => {
|
||||
ev.preventDefault(); // we don't want to spacebar, as this is captured in the overall keydown event
|
||||
})
|
||||
|
||||
this.scrubberEl = document.createElement('div');
|
||||
this.scrubberEl.classList.add('scrubber')
|
||||
|
|
Loading…
Reference in a new issue