2013-02-06 02:07:40 -08:00
// .modal-open - body class for killing the scroll
// .modal - container to scroll within
// .modal-dialog - positioning shell for the actual modal
2016-09-15 17:39:31 +01:00
// .modal-content - actual modal w/ bg and corners and stuff
2013-02-06 02:07:40 -08:00
2015-04-18 11:38:47 -07:00
2013-02-06 02:07:40 -08:00
// Kill the scroll on the body
. modal-open {
overflow : hidden ;
}
// Container that the modal scrolls within
. modal {
2011-11-16 23:58:36 -08:00
position : fixed ;
top : 0 ;
right : 0 ;
bottom : 0 ;
2011-11-17 01:28:42 -08:00
left : 0 ;
2014-12-02 14:02:35 -08:00
z-index : $zindex-modal ;
2014-12-11 12:05:29 -08:00
display : none ;
overflow : hidden ;
2013-12-14 15:38:21 -08:00
// Prevent Chrome on Windows from adding a focus outline. For details, see
// https://github.com/twbs/bootstrap/pull/10951.
2013-10-05 13:55:26 +03:00
outline : 0 ;
2016-10-03 21:36:46 -07:00
// We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
// gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
// See also https://github.com/twbs/bootstrap/issues/17695
2013-02-07 19:31:12 -08:00
// When fading in the modal, animate it to slide down
2013-07-26 22:09:31 -07:00
& . fade . modal-dialog {
2016-12-20 05:33:17 +01:00
@include transition ( $modal-transition ) ;
2015-08-23 01:00:22 -07:00
transform : translate ( 0 , - 25 % ) ;
2013-02-07 19:31:12 -08:00
}
2016-10-27 16:13:17 -06:00
& . show . modal-dialog { transform : translate ( 0 , 0 ) ; }
2013-02-07 19:21:56 -08:00
}
2014-06-10 19:06:24 -07:00
. modal-open . modal {
2014-06-10 19:20:56 -07:00
overflow-x : hidden ;
overflow-y : auto ;
2014-06-10 19:06:24 -07:00
}
2011-11-16 23:58:36 -08:00
2013-02-06 02:07:40 -08:00
// Shell div to position the modal with bottom padding
. modal-dialog {
2013-10-20 20:04:10 -07:00
position : relative ;
2013-02-06 02:07:40 -08:00
width : auto ;
2016-02-15 23:10:38 -08:00
margin : $modal-dialog-margin ;
2017-05-26 17:56:37 +01:00
// allow clicks to pass through for custom click handling to close modal
pointer-events : none ;
2011-11-16 23:58:36 -08:00
}
2013-02-06 02:07:40 -08:00
// Actual modal
. modal-content {
position : relative ;
2016-12-24 17:25:27 -08:00
display : flex ;
flex-direction : column ;
2017-05-26 17:56:37 +01:00
// counteract the pointer-events: none; in the .modal-dialog
pointer-events : auto ;
2014-12-02 14:02:35 -08:00
background-color : $modal-content-bg ;
2014-12-11 12:05:29 -08:00
background-clip : padding-box ;
2016-02-15 23:45:28 -08:00
border : $modal-content-border-width solid $modal-content-border-color ;
2016-01-11 14:02:14 +01:00
@include border-radius ( $border-radius-lg ) ;
2017-06-08 20:27:19 -07:00
@include box-shadow ( $modal-content-box-shadow-xs ) ;
2012-10-29 21:34:10 -07:00
// Remove focus outline from opened modal
2014-03-10 07:55:29 +01:00
outline : 0 ;
2011-11-16 23:58:36 -08:00
}
2013-02-06 02:07:40 -08:00
// Modal background
. modal-backdrop {
2015-02-24 01:00:04 +01:00
position : fixed ;
2013-02-06 02:07:40 -08:00
top : 0 ;
right : 0 ;
2015-02-24 01:00:04 +01:00
bottom : 0 ;
2013-02-06 02:07:40 -08:00
left : 0 ;
2016-10-27 09:31:38 -07:00
z-index : $zindex-modal-backdrop ;
2015-03-29 00:13:30 -07:00
background-color : $modal-backdrop-bg ;
2015-03-29 00:08:54 -07:00
2013-02-06 02:07:40 -08:00
// Fade for backdrop
2014-10-26 22:34:08 -07:00
& . fade { opacity : 0 ; }
2016-10-27 16:13:17 -06:00
& . show { opacity : $modal-backdrop-opacity ; }
2013-02-06 02:07:40 -08:00
}
// Modal header
// Top section of the modal w/ title and dismiss
2011-11-16 23:58:36 -08:00
. modal-header {
2016-12-24 17:26:19 -08:00
display : flex ;
2017-10-01 01:42:24 -05:00
align-items : flex-start ; // so the close btn always stays on the upper right corner
2016-12-24 17:35:51 -08:00
justify-content : space-between ; // Put modal header elements (title and dismiss) on opposite ends
2016-11-10 22:37:20 +00:00
padding : $modal-header-padding ;
2016-02-15 23:35:57 -08:00
border-bottom : $modal-header-border-width solid $modal-header-border-color ;
2017-06-17 20:09:00 -07:00
. close {
2017-10-01 01:42:24 -05:00
padding : $modal-header-padding ;
margin : ( - $modal-header-padding ) ( - $modal-header-padding ) ( - $modal-header-padding ) auto ; // auto on the left force icon to the right even when there is no .modal-title
2017-06-17 20:09:00 -07:00
}
2013-02-06 02:07:40 -08:00
}
// Title text within header
. modal-title {
2016-12-24 17:25:43 -08:00
margin-bottom : 0 ;
2014-12-02 14:02:35 -08:00
line-height : $modal-title-line-height ;
2011-11-16 23:58:36 -08:00
}
2012-02-12 15:43:04 -08:00
2013-02-06 02:07:40 -08:00
// Modal body
// Where all modal content resides (sibling of .modal-header and .modal-footer)
2011-11-16 23:58:36 -08:00
. modal-body {
2012-12-02 09:52:13 +10:00
position : relative ;
2016-12-24 17:25:27 -08:00
// Enable `flex-grow: 1` so that the body take up as much space as possible
// when should there be a fixed height on `.modal-dialog`.
flex : 1 1 auto ;
2014-12-02 14:02:35 -08:00
padding : $modal-inner-padding ;
2011-11-16 23:58:36 -08:00
}
2012-02-12 15:43:04 -08:00
// Footer (for actions)
2011-11-16 23:58:36 -08:00
. modal-footer {
2016-12-24 17:27:42 -08:00
display : flex ;
align-items : center ; // vertically center
2016-12-24 17:35:51 -08:00
justify-content : flex-end ; // Right align buttons with flex property because text-align doesn't work on flex items
2014-12-02 14:02:35 -08:00
padding : $modal-inner-padding ;
2016-02-15 23:35:57 -08:00
border-top : $modal-footer-border-width solid $modal-footer-border-color ;
2016-12-24 17:27:42 -08:00
// Easily place margin between footer elements
> : not ( : first-child ) { margin-left : .25 rem ; }
> : not ( : last-child ) { margin-right : .25 rem ; }
2011-11-16 23:58:36 -08:00
}
2013-02-06 02:07:40 -08:00
2014-03-16 18:38:47 -07:00
// Measure scrollbar width for padding body during modal show/hide
. modal-scrollbar-measure {
position : absolute ;
top : - 9999 px ;
width : 50 px ;
height : 50 px ;
overflow : scroll ;
}
2013-02-07 19:21:56 -08:00
// Scale up the modal
2014-12-29 13:40:19 -08:00
@include media-breakpoint-up ( sm ) {
2013-12-14 16:29:47 -08:00
// Automatically set modal's width for larger viewports
2013-02-06 02:07:40 -08:00
. modal-dialog {
2016-02-06 20:18:48 -08:00
max-width : $modal-md ;
2017-06-08 20:27:19 -07:00
margin : $modal-dialog-margin-y-sm-up auto ;
2013-02-06 02:07:40 -08:00
}
2016-02-06 20:18:48 -08:00
2013-02-07 19:31:12 -08:00
. modal-content {
2017-06-08 20:27:19 -07:00
@include box-shadow ( $modal-content-box-shadow-sm-up ) ;
2013-02-07 19:31:12 -08:00
}
2013-02-06 02:07:40 -08:00
2016-02-06 20:18:48 -08:00
. modal-sm { max-width : $modal-sm ; }
2014-02-04 02:01:31 -08:00
}
2013-12-14 16:29:47 -08:00
2016-02-06 20:18:48 -08:00
@include media-breakpoint-up ( lg ) {
. modal-lg { max-width : $modal-lg ; }
2013-02-06 02:07:40 -08:00
}