mailiverse/web/common/base-modal.css

49 lines
941 B
CSS
Raw Normal View History

2013-07-21 13:40:17 -04:00
/**********************************************************/
.modal-container {
width: 100%;
height: 100%;
top: 0;
left: 0;
position: fixed;
z-index: 1;
background-color: rgba(0,0,0,0.2);
}
.bootstrap-modal {
position: fixed;
top: 50%;
left: 50%;
z-index: 1050;
width: 560px;
margin: -250px 0 0 -280px;
overflow: auto;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
}
.modal {
padding:10px;
}
.modal-footer {
margin-top: 15px;
text-align: right;
}
.modal-footer .btn {
margin-left: 5px;
}
/*******************************************************/