Hide elements with z-index (fix modals on mobile)
This commit is contained in:
parent
43a747b96d
commit
f4e4767a53
1 changed files with 3 additions and 3 deletions
|
|
@ -552,7 +552,7 @@ a.pin-button:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.reveal-modal {
|
.reveal-modal {
|
||||||
opacity: 0;
|
z-index: -1;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|
@ -593,7 +593,7 @@ a.pin-button:active {
|
||||||
.reveal-modal.ng-animate.in-remove {
|
.reveal-modal.ng-animate.in-remove {
|
||||||
-webkit-animation-name: slideOutDown;
|
-webkit-animation-name: slideOutDown;
|
||||||
animation-name: slideOutDown;
|
animation-name: slideOutDown;
|
||||||
opacity: 1;
|
z-index: 1003;
|
||||||
}
|
}
|
||||||
|
|
||||||
@-webkit-keyframes slideInUp {
|
@-webkit-keyframes slideInUp {
|
||||||
|
|
@ -628,7 +628,7 @@ a.pin-button:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
.reveal-modal.fade.in {
|
.reveal-modal.fade.in {
|
||||||
opacity: 1;
|
z-index: 1003;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="color"],
|
input[type="color"],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue