mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
FIX: background fade-in for modal dialogs
This commit is contained in:
parent
1032fa7262
commit
645a22fdd5
1 changed files with 7 additions and 7 deletions
|
@ -26,22 +26,22 @@
|
|||
|
||||
.modal-backdrop,
|
||||
.modal-backdrop.fade.in {
|
||||
-webkit-animation: fade .25s;
|
||||
animation: fade .25s;
|
||||
opacity: 0.8;
|
||||
filter: alpha(opacity=80);
|
||||
-webkit-animation: fade .3s;
|
||||
animation: fade .3s;
|
||||
opacity: .9;
|
||||
filter: alpha(opacity=90);
|
||||
}
|
||||
|
||||
//fade in
|
||||
|
||||
@keyframes fade {
|
||||
from {opacity: 0}
|
||||
to {opacity: .8}
|
||||
from {opacity: 0}
|
||||
to {opacity: .9}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fade {
|
||||
from {opacity: 0}
|
||||
to {opacity: 1}
|
||||
to {opacity: .9}
|
||||
}
|
||||
|
||||
.modal-outer-container {
|
||||
|
|
Loading…
Reference in a new issue