parent
e8adccaa02
commit
233b5e7653
|
@ -176,7 +176,10 @@ H5P.ConfirmationDialog = (function (EventDispatcher) {
|
||||||
fitToContainer();
|
fitToContainer();
|
||||||
popupBackground.classList.remove('hiding');
|
popupBackground.classList.remove('hiding');
|
||||||
popup.classList.remove('hidden');
|
popup.classList.remove('hidden');
|
||||||
cancelButton.focus();
|
|
||||||
|
// Programmatically focus popup
|
||||||
|
popup.setAttribute('tabindex', '-1');
|
||||||
|
popup.focus();
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,6 +25,10 @@
|
||||||
transition: opacity 0.1s linear 0s, visibility 0s linear 0.1s;
|
transition: opacity 0.1s linear 0s, visibility 0s linear 0.1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h5p-confirmation-dialog-popup:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
.h5p-confirmation-dialog-popup {
|
.h5p-confirmation-dialog-popup {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue