2011-11-17 02:58:36 -05:00
|
|
|
// MODALS
|
|
|
|
// ------
|
|
|
|
|
|
|
|
.modal-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2011-11-17 04:28:42 -05:00
|
|
|
left: 0;
|
2012-01-07 07:17:33 -05:00
|
|
|
z-index: @zindexModalBackdrop;
|
2011-11-17 04:28:42 -05:00
|
|
|
background-color: @black;
|
2011-11-17 02:58:36 -05:00
|
|
|
// Fade for backdrop
|
|
|
|
&.fade { opacity: 0; }
|
|
|
|
}
|
|
|
|
|
2011-12-27 16:40:58 -05:00
|
|
|
.modal-backdrop,
|
|
|
|
.modal-backdrop.fade.in {
|
2011-11-17 02:58:36 -05:00
|
|
|
.opacity(80);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2012-01-07 07:17:33 -05:00
|
|
|
z-index: @zindexModal;
|
2012-01-02 19:04:01 -05:00
|
|
|
max-height: 500px;
|
|
|
|
overflow: auto;
|
2011-11-17 02:58:36 -05:00
|
|
|
width: 560px;
|
2012-01-15 14:41:46 -05:00
|
|
|
margin: -250px 0 0 -280px;
|
2011-11-17 02:58:36 -05:00
|
|
|
background-color: @white;
|
|
|
|
border: 1px solid #999;
|
|
|
|
border: 1px solid rgba(0,0,0,.3);
|
|
|
|
*border: 1px solid #999; /* IE6-7 */
|
|
|
|
.border-radius(6px);
|
|
|
|
.box-shadow(0 3px 7px rgba(0,0,0,0.3));
|
|
|
|
.background-clip(padding-box);
|
|
|
|
&.fade {
|
|
|
|
.transition(e('opacity .3s linear, top .3s ease-out'));
|
|
|
|
top: -25%;
|
|
|
|
}
|
|
|
|
&.fade.in { top: 50%; }
|
|
|
|
}
|
|
|
|
.modal-header {
|
|
|
|
padding: 5px 15px;
|
2011-11-17 04:28:42 -05:00
|
|
|
border-bottom: 1px solid #eee;
|
2012-01-07 07:20:56 -05:00
|
|
|
// Close icon
|
2012-01-25 12:53:53 -05:00
|
|
|
.close { margin-top: 2px; }
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
|
|
|
.modal-body {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
.modal-footer {
|
|
|
|
padding: 14px 15px 15px;
|
2011-11-17 04:28:42 -05:00
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: #f5f5f5;
|
2011-11-17 02:58:36 -05:00
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
.border-radius(0 0 6px 6px);
|
|
|
|
.box-shadow(inset 0 1px 0 @white);
|
|
|
|
.clearfix();
|
|
|
|
.btn {
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
2012-01-27 23:05:03 -05:00
|
|
|
margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
|
|
|
}
|