Improve snapshot modal to support mobile devices
parent
4ca84c57a1
commit
76a42ea8b1
|
@ -163,7 +163,7 @@
|
|||
margin-right: @snapshot_spacing;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
&:hover, &:focus, &:focus-within {
|
||||
.cp-snapshot-buttons {
|
||||
display: flex;
|
||||
}
|
||||
|
|
|
@ -3354,7 +3354,7 @@ define([
|
|||
}
|
||||
});
|
||||
|
||||
return h('span.cp-snapshot-element', [
|
||||
return h('span.cp-snapshot-element', {tabindex:0}, [
|
||||
h('i.fa.fa-camera'),
|
||||
h('span.cp-snapshot-title', [
|
||||
h('span', s.title),
|
||||
|
@ -3400,6 +3400,10 @@ define([
|
|||
|
||||
modal = UI.openCustomModal(UI.dialog.customModal(content, {buttons: buttons }));
|
||||
setTimeout(function () {
|
||||
if (list.length) {
|
||||
$(list[0]).focus();
|
||||
return;
|
||||
}
|
||||
$input.focus();
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue