2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

starting up bootstrap-js...

This commit is contained in:
Jacob Thornton
2011-08-26 23:57:35 -07:00
parent df8b65445c
commit c26eb016fb
6 changed files with 381 additions and 5 deletions
+9
View File
@@ -579,6 +579,15 @@ input[type=submit].btn {
// MODALS
// ------
.modal-backdrop,
.modal {
.transition(opacity .15s linear);
opacity: 0;
&.open {
opacity: 1;
}
}
.modal-backdrop {
background-color: rgba(0,0,0,.5);
position: fixed;
+2
View File
@@ -150,6 +150,8 @@
.transition(@transition) {
-webkit-transition: @transition;
-moz-transition: @transition;
-ms-transition: @transition;
-o-transition: @transition;
transition: @transition;
}