2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Modals
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
|
2013-02-06 11:07:40 +01:00
|
|
|
// .modal-open - body class for killing the scroll
|
|
|
|
// .modal - container to scroll within
|
|
|
|
// .modal-dialog - positioning shell for the actual modal
|
|
|
|
// .modal-content - actual modal w/ bg and corners and shit
|
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
|
2013-02-06 11:07:40 +01:00
|
|
|
// Kill the scroll on the body
|
|
|
|
.modal-open {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Container that the modal scrolls within
|
|
|
|
.modal {
|
2011-11-17 08:58:36 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2011-11-17 10:28:42 +01:00
|
|
|
left: 0;
|
2014-12-02 23:02:35 +01:00
|
|
|
z-index: $zindex-modal;
|
2014-12-11 21:05:29 +01:00
|
|
|
display: none;
|
|
|
|
overflow: hidden;
|
2013-12-15 00:38:21 +01:00
|
|
|
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
|
|
|
// https://github.com/twbs/bootstrap/pull/10951.
|
2013-10-05 12:55:26 +02:00
|
|
|
outline: 0;
|
2014-12-11 21:05:29 +01:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2013-02-08 04:31:12 +01:00
|
|
|
|
|
|
|
// When fading in the modal, animate it to slide down
|
2013-07-27 07:09:31 +02:00
|
|
|
&.fade .modal-dialog {
|
2014-12-11 21:05:29 +01:00
|
|
|
transform: transition .3s ease-out, translate(0, -25%);
|
2013-02-08 04:31:12 +01:00
|
|
|
}
|
2014-10-27 06:32:39 +01:00
|
|
|
&.in .modal-dialog { transform: translate(0, 0); }
|
2013-02-08 04:21:56 +01:00
|
|
|
}
|
2014-06-11 04:06:24 +02:00
|
|
|
.modal-open .modal {
|
2014-06-11 04:20:56 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2014-06-11 04:06:24 +02:00
|
|
|
}
|
2011-11-17 08:58:36 +01:00
|
|
|
|
2013-02-06 11:07:40 +01:00
|
|
|
// Shell div to position the modal with bottom padding
|
|
|
|
.modal-dialog {
|
2013-10-21 05:04:10 +02:00
|
|
|
position: relative;
|
2013-02-06 11:07:40 +01:00
|
|
|
width: auto;
|
2013-11-30 07:03:49 +01:00
|
|
|
margin: 10px;
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
|
|
|
|
2013-02-06 11:07:40 +01:00
|
|
|
// Actual modal
|
|
|
|
.modal-content {
|
|
|
|
position: relative;
|
2014-12-02 23:02:35 +01:00
|
|
|
background-color: $modal-content-bg;
|
2014-12-11 21:05:29 +01:00
|
|
|
background-clip: padding-box;
|
2014-12-02 23:02:35 +01:00
|
|
|
border: 1px solid $modal-content-border-color;
|
|
|
|
border-radius: $border-radius-lg;
|
|
|
|
@include box-shadow(0 3px 9px rgba(0,0,0,.5));
|
2012-10-30 05:34:10 +01:00
|
|
|
// Remove focus outline from opened modal
|
2014-03-10 07:55:29 +01:00
|
|
|
outline: 0;
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
2013-02-06 11:07:40 +01:00
|
|
|
|
|
|
|
// Modal background
|
|
|
|
.modal-backdrop {
|
2015-02-24 01:00:04 +01:00
|
|
|
position: fixed;
|
2013-02-06 11:07:40 +01:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2015-02-24 01:00:04 +01:00
|
|
|
bottom: 0;
|
2013-02-06 11:07:40 +01:00
|
|
|
left: 0;
|
2015-03-29 09:08:54 +02:00
|
|
|
z-index: $zindex-modal-bg;
|
2015-03-29 09:13:30 +02:00
|
|
|
background-color: $modal-backdrop-bg;
|
2015-03-29 09:08:54 +02:00
|
|
|
|
2013-02-06 11:07:40 +01:00
|
|
|
// Fade for backdrop
|
2014-10-27 06:34:08 +01:00
|
|
|
&.fade { opacity: 0; }
|
2014-12-02 23:02:35 +01:00
|
|
|
&.in { opacity: $modal-backdrop-opacity; }
|
2013-02-06 11:07:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Modal header
|
|
|
|
// Top section of the modal w/ title and dismiss
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal-header {
|
2014-12-11 21:05:29 +01:00
|
|
|
min-height: ($modal-title-padding + $modal-title-line-height);
|
2014-12-02 23:02:35 +01:00
|
|
|
padding: $modal-title-padding;
|
|
|
|
border-bottom: 1px solid $modal-header-border-color;
|
2013-02-06 11:07:40 +01:00
|
|
|
}
|
|
|
|
// Close icon
|
|
|
|
.modal-header .close {
|
2013-04-13 05:56:19 +02:00
|
|
|
margin-top: -2px;
|
2013-02-06 11:07:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Title text within header
|
|
|
|
.modal-title {
|
|
|
|
margin: 0;
|
2014-12-02 23:02:35 +01:00
|
|
|
line-height: $modal-title-line-height;
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
2012-02-13 00:43:04 +01:00
|
|
|
|
2013-02-06 11:07:40 +01:00
|
|
|
// Modal body
|
|
|
|
// Where all modal content resides (sibling of .modal-header and .modal-footer)
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal-body {
|
2012-12-02 00:52:13 +01:00
|
|
|
position: relative;
|
2014-12-02 23:02:35 +01:00
|
|
|
padding: $modal-inner-padding;
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
2012-02-13 00:43:04 +01:00
|
|
|
|
|
|
|
// Footer (for actions)
|
2011-11-17 08:58:36 +01:00
|
|
|
.modal-footer {
|
2014-12-02 23:02:35 +01:00
|
|
|
padding: $modal-inner-padding;
|
2012-02-23 07:38:54 +01:00
|
|
|
text-align: right; // right align buttons
|
2014-12-02 23:02:35 +01:00
|
|
|
border-top: 1px solid $modal-footer-border-color;
|
|
|
|
@include clearfix(); // clear it in case folks use .pull-* classes on buttons
|
2012-02-23 07:38:54 +01:00
|
|
|
|
|
|
|
// Properly space out buttons
|
|
|
|
.btn + .btn {
|
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
|
2014-12-11 21:05:29 +01:00
|
|
|
margin-left: 5px;
|
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
|
|
|
}
|
2013-02-06 11:07:40 +01:00
|
|
|
|
2014-03-17 02:38:47 +01:00
|
|
|
// Measure scrollbar width for padding body during modal show/hide
|
|
|
|
.modal-scrollbar-measure {
|
|
|
|
position: absolute;
|
|
|
|
top: -9999px;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
2013-02-08 04:21:56 +01:00
|
|
|
// Scale up the modal
|
2014-12-29 22:40:19 +01:00
|
|
|
@include media-breakpoint-up(sm) {
|
2013-12-15 01:29:47 +01:00
|
|
|
// Automatically set modal's width for larger viewports
|
2013-02-06 11:07:40 +01:00
|
|
|
.modal-dialog {
|
2014-12-02 23:02:35 +01:00
|
|
|
width: $modal-md;
|
2013-11-30 20:56:06 +01:00
|
|
|
margin: 30px auto;
|
2013-02-06 11:07:40 +01:00
|
|
|
}
|
2013-02-08 04:31:12 +01:00
|
|
|
.modal-content {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include box-shadow(0 5px 15px rgba(0,0,0,.5));
|
2013-02-08 04:31:12 +01:00
|
|
|
}
|
2013-02-06 11:07:40 +01:00
|
|
|
|
2013-12-15 01:29:47 +01:00
|
|
|
// Modal sizes
|
2014-12-02 23:02:35 +01:00
|
|
|
.modal-sm { width: $modal-sm; }
|
2014-02-04 11:01:31 +01:00
|
|
|
}
|
2013-12-15 01:29:47 +01:00
|
|
|
|
2014-12-29 22:40:19 +01:00
|
|
|
@include media-breakpoint-up(md) {
|
2014-12-02 23:02:35 +01:00
|
|
|
.modal-lg { width: $modal-lg; }
|
2013-02-06 11:07:40 +01:00
|
|
|
}
|