-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve how we open the sidebar by making the code more general * Resize captcha only if the sidebar is open * Close sidebar by clicking on an actual overlay element. * Add sidebar opening feature inside Audiencias Interativas
- Loading branch information
Showing
6 changed files
with
60 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.edem-overlay { | ||
position: fixed; | ||
opacity: 0; | ||
width: 0; | ||
height: 0; | ||
top: 0; | ||
background-color: $edem-color-primary; | ||
z-index: 100000; | ||
transition: opacity 0.3s ease, width 0s 0.3s, height 0s 0.3s; | ||
|
||
body.-sidebaropen & { | ||
width: 100%; | ||
height: 100vh; | ||
opacity: 0.8; | ||
cursor: pointer; | ||
transition: opacity 0.3s 0s ease, width 0s 0s, height 0s 0s; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters