Merge branch 'remove-outline'

pull/31/head
Paal Joergensen 2017-11-02 17:17:35 +01:00
commit 127471cc13
3 changed files with 7 additions and 3 deletions

View File

@ -272,7 +272,7 @@
color: #666; color: #666;
} }
.h5p-memory-game .h5p-memory-close:focus { .h5p-memory-game .h5p-memory-close:focus {
outline: 2px dashed pink; outline: 2px solid #a5c7fe;
} }
.h5p-memory-reset { .h5p-memory-reset {
position: absolute; position: absolute;
@ -302,7 +302,7 @@
margin-top: -0.2em; margin-top: -0.2em;
} }
.h5p-memory-reset:focus { .h5p-memory-reset:focus {
outline: 2px dashed pink; outline: 2px solid #a5c7fe;
} }
.h5p-memory-transin { .h5p-memory-transin {
transform: translate(-50%,-50%) scale(0) rotate(180deg); transform: translate(-50%,-50%) scale(0) rotate(180deg);
@ -315,3 +315,6 @@
.h5p-memory-complete { .h5p-memory-complete {
display: none; display: none;
} }
.h5p-memory-game .h5p-programatically-focusable {
outline: none;
}

View File

@ -436,6 +436,7 @@ H5P.MemoryGame = (function (EventDispatcher, $) {
$list.appendTo($container); $list.appendTo($container);
$bottom = $('<div/>', { $bottom = $('<div/>', {
'class': 'h5p-programatically-focusable',
tabindex: '-1', tabindex: '-1',
appendTo: $container appendTo: $container
}); });

View File

@ -13,7 +13,7 @@
var closed; var closed;
var $popup = $('<div class="h5p-memory-pop" role="dialog"><div class="h5p-memory-top"></div><div class="h5p-memory-desc" tabindex="-1"></div><div class="h5p-memory-close" role="button" tabindex="0" title="' + (l10n.closeLabel || 'Close') + '"></div></div>').appendTo($container); var $popup = $('<div class="h5p-memory-pop" role="dialog"><div class="h5p-memory-top"></div><div class="h5p-memory-desc h5p-programatically-focusable" tabindex="-1"></div><div class="h5p-memory-close" role="button" tabindex="0" title="' + (l10n.closeLabel || 'Close') + '"></div></div>').appendTo($container);
var $desc = $popup.find('.h5p-memory-desc'); var $desc = $popup.find('.h5p-memory-desc');
var $top = $popup.find('.h5p-memory-top'); var $top = $popup.find('.h5p-memory-top');