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

Commit

Permalink
Fix issue with double-click on dialog background (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferndot committed Jul 2, 2015
1 parent 84cba46 commit a645aa0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions style/desktop.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ form[role="dialog"] + .background {
background: rgba(255,255,255,.7);
opacity: 0;
visibility: hidden;
pointer-events: none;
-moz-transition: opacity .4s, visibility .4s 0s;
-webkit-transition: opacity .4s, visibility .4s 0s;
-o-transition: opacity .4s, visibility .4s 0s;
Expand All @@ -64,6 +65,7 @@ form[role="dialog"].current + .background,
form[role="dialog"].parent + .background {
opacity: 1;
visibility: visible;
pointer-events: all;
-moz-transition: opacity .4s, visibility 0s;
-webkit-transition: opacity .4s, visibility 0s;
-o-transition: opacity .4s, visibility 0s;
Expand Down

0 comments on commit a645aa0

Please sign in to comment.