mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 20:07:52 -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,
|
||||||
.modal-backdrop.fade.in {
|
.modal-backdrop.fade.in {
|
||||||
-webkit-animation: fade .25s;
|
-webkit-animation: fade .3s;
|
||||||
animation: fade .25s;
|
animation: fade .3s;
|
||||||
opacity: 0.8;
|
opacity: .9;
|
||||||
filter: alpha(opacity=80);
|
filter: alpha(opacity=90);
|
||||||
}
|
}
|
||||||
|
|
||||||
//fade in
|
//fade in
|
||||||
|
|
||||||
@keyframes fade {
|
@keyframes fade {
|
||||||
from {opacity: 0}
|
from {opacity: 0}
|
||||||
to {opacity: .8}
|
to {opacity: .9}
|
||||||
}
|
}
|
||||||
|
|
||||||
@-webkit-keyframes fade {
|
@-webkit-keyframes fade {
|
||||||
from {opacity: 0}
|
from {opacity: 0}
|
||||||
to {opacity: 1}
|
to {opacity: .9}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-outer-container {
|
.modal-outer-container {
|
||||||
|
|
Loading…
Reference in a new issue