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