2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Modals
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-02-13 00:43:04 +01:00
|
|
|
// Background
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2011-11-17 10:28:42 +01:00
|
|
|
left: 0;
|
2012-01-07 13:17:33 +01:00
|
|
|
z-index: @zindexModalBackdrop;
|
2011-11-17 10:28:42 +01:00
|
|
|
background-color: @black;
|
2011-11-17 08:58:36 +01:00
|
|
|
// Fade for backdrop
|
|
|
|
&.fade { opacity: 0; }
|
|
|
|
}
|
|
|
|
|
2011-12-27 22:40:58 +01:00
|
|
|
.modal-backdrop,
|
|
|
|
.modal-backdrop.fade.in {
|
2011-11-17 08:58:36 +01:00
|
|
|
.opacity(80);
|
|
|
|
}
|
|
|
|
|
2012-02-13 00:43:04 +01:00
|
|
|
// Base modal
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal {
|
|
|
|
position: fixed;
|
2012-11-01 05:43:32 +01:00
|
|
|
top: 10%;
|
2011-11-17 08:58:36 +01:00
|
|
|
left: 50%;
|
2012-01-07 13:17:33 +01:00
|
|
|
z-index: @zindexModal;
|
2011-11-17 08:58:36 +01:00
|
|
|
width: 560px;
|
2012-11-01 05:43:32 +01:00
|
|
|
margin-left: -280px;
|
2011-11-17 08:58:36 +01: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);
|
2012-10-30 05:34:10 +01:00
|
|
|
// Remove focus outline from opened modal
|
|
|
|
outline: none;
|
|
|
|
|
2011-11-17 08:58:36 +01:00
|
|
|
&.fade {
|
|
|
|
.transition(e('opacity .3s linear, top .3s ease-out'));
|
|
|
|
top: -25%;
|
|
|
|
}
|
2012-11-01 05:43:32 +01:00
|
|
|
&.fade.in { top: 10%; }
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
|
|
|
.modal-header {
|
2012-01-28 20:24:34 +01:00
|
|
|
padding: 9px 15px;
|
2011-11-17 10:28:42 +01:00
|
|
|
border-bottom: 1px solid #eee;
|
2012-01-07 13:20:56 +01:00
|
|
|
// Close icon
|
2012-01-25 18:53:53 +01:00
|
|
|
.close { margin-top: 2px; }
|
2012-07-24 09:35:54 +02:00
|
|
|
// Heading
|
|
|
|
h3 {
|
|
|
|
margin: 0;
|
2012-07-24 09:37:19 +02:00
|
|
|
line-height: 30px;
|
2012-07-24 09:35:54 +02:00
|
|
|
}
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
2012-02-13 00:43:04 +01:00
|
|
|
|
2012-04-01 17:25:43 +02:00
|
|
|
// Body (where all modal content resides)
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal-body {
|
2012-12-02 00:52:13 +01:00
|
|
|
position: relative;
|
2012-02-20 06:55:09 +01:00
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 400px;
|
2011-11-17 08:58:36 +01:00
|
|
|
padding: 15px;
|
|
|
|
}
|
2012-02-13 00:43:04 +01:00
|
|
|
// Remove bottom margin if need be
|
2012-02-28 04:09:44 +01:00
|
|
|
.modal-form {
|
2012-02-13 00:43:04 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Footer (for actions)
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal-footer {
|
|
|
|
padding: 14px 15px 15px;
|
2011-11-17 10:28:42 +01:00
|
|
|
margin-bottom: 0;
|
2012-02-23 07:38:54 +01:00
|
|
|
text-align: right; // right align buttons
|
2011-11-17 10:28:42 +01:00
|
|
|
background-color: #f5f5f5;
|
2011-11-17 08:58:36 +01:00
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
.border-radius(0 0 6px 6px);
|
|
|
|
.box-shadow(inset 0 1px 0 @white);
|
2012-02-23 07:38:54 +01:00
|
|
|
.clearfix(); // clear it in case folks use .pull-* classes on buttons
|
|
|
|
|
|
|
|
// Properly space out buttons
|
|
|
|
.btn + .btn {
|
2011-11-17 08:58:36 +01:00
|
|
|
margin-left: 5px;
|
2012-01-28 05:05:03 +01:00
|
|
|
margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
2012-03-12 06:28:37 +01:00
|
|
|
// but override that for button groups
|
|
|
|
.btn-group .btn + .btn {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2012-09-07 20:10:00 +02:00
|
|
|
// and override it for block buttons as well
|
|
|
|
.btn-block + .btn-block {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|