Skip to content
This repository was archived by the owner on Oct 2, 2018. It is now read-only.

Commit a645aa0

Browse files
committed
Fix issue with double-click on dialog background (#271)
1 parent 84cba46 commit a645aa0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

style/desktop.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ form[role="dialog"] + .background {
5151
background: rgba(255,255,255,.7);
5252
opacity: 0;
5353
visibility: hidden;
54+
pointer-events: none;
5455
-moz-transition: opacity .4s, visibility .4s 0s;
5556
-webkit-transition: opacity .4s, visibility .4s 0s;
5657
-o-transition: opacity .4s, visibility .4s 0s;
@@ -64,6 +65,7 @@ form[role="dialog"].current + .background,
6465
form[role="dialog"].parent + .background {
6566
opacity: 1;
6667
visibility: visible;
68+
pointer-events: all;
6769
-moz-transition: opacity .4s, visibility 0s;
6870
-webkit-transition: opacity .4s, visibility 0s;
6971
-o-transition: opacity .4s, visibility 0s;

0 commit comments

Comments
 (0)