2014-02-11 18:18:59 +01:00
|
|
|
$zindex-modal-background: 500;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2014-06-16 13:59:43 +02:00
|
|
|
.fade {
|
2017-08-26 00:04:10 +02:00
|
|
|
@include transition(opacity 0.15s linear);
|
2015-11-03 13:15:33 +01:00
|
|
|
opacity: 0;
|
2017-08-11 01:13:57 +02:00
|
|
|
|
2014-06-16 13:59:43 +02:00
|
|
|
&.in {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
// Kill the scroll on the body
|
|
|
|
.modal-open {
|
|
|
|
overflow: hidden;
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.content-wrapper {
|
|
|
|
transform: none;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Container that the modal scrolls within
|
|
|
|
.modal {
|
2015-11-03 18:12:12 +01:00
|
|
|
box-sizing: border-box;
|
2014-01-24 18:34:26 +01:00
|
|
|
display: none;
|
|
|
|
overflow: auto;
|
|
|
|
overflow-y: scroll;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2014-02-11 18:18:59 +01:00
|
|
|
z-index: $zindex-modal-background;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Shell div to position the modal with bottom padding
|
|
|
|
.modal-dialog {
|
2015-11-03 18:12:12 +01:00
|
|
|
box-sizing: border-box;
|
2014-01-24 18:34:26 +01:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2015-09-25 18:14:46 +02:00
|
|
|
padding: 0;
|
2014-02-11 18:18:59 +01:00
|
|
|
z-index: ($zindex-modal-background + 10);
|
2015-09-25 15:17:39 +02:00
|
|
|
height: 90%;
|
|
|
|
width: 85%;
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:before {
|
2014-01-24 18:34:26 +01:00
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: -0.25em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Actual modal
|
|
|
|
.modal-content {
|
2015-11-03 18:12:12 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 3px;
|
2015-11-03 13:15:33 +01:00
|
|
|
width: 98.7%;
|
2014-01-24 18:34:26 +01:00
|
|
|
position: relative;
|
2015-11-03 13:15:33 +01:00
|
|
|
background-color: $color-white;
|
2015-09-25 15:17:39 +02:00
|
|
|
margin-top: 2em;
|
|
|
|
padding-bottom: 3em;
|
|
|
|
display: inline-block;
|
2014-01-24 18:34:26 +01:00
|
|
|
vertical-align: middle;
|
2015-09-25 15:17:39 +02:00
|
|
|
overflow: hidden;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Modal background
|
|
|
|
.modal-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2014-02-11 18:18:59 +01:00
|
|
|
z-index: ($zindex-modal-background - 10);
|
2015-11-03 13:15:33 +01:00
|
|
|
background-color: $color-black;
|
2017-08-11 01:13:57 +02:00
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
// Fade for backdrop
|
2015-09-25 15:17:39 +02:00
|
|
|
&.fade { opacity: 0; }
|
2017-08-18 02:28:38 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.in { opacity: 0.5; }
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.modal .close {
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
z-index: 1;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Where all modal content resides
|
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
2015-09-25 15:17:39 +02:00
|
|
|
padding-bottom: 2em;
|
2014-02-05 13:04:24 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
header {
|
2016-10-25 20:22:38 +02:00
|
|
|
padding-left: 2em;
|
2015-09-25 15:17:39 +02:00
|
|
|
padding-right: 100px;
|
2020-06-16 17:53:57 +02:00
|
|
|
|
|
|
|
&.tab-merged {
|
|
|
|
padding-left: 1.6em;
|
|
|
|
}
|
2014-02-05 13:04:24 +01:00
|
|
|
}
|
2016-10-25 20:22:38 +02:00
|
|
|
|
|
|
|
.header-title {
|
2017-08-26 00:04:10 +02:00
|
|
|
// stylelint-disable-next-line declaration-no-important
|
2016-10-27 22:26:22 +02:00
|
|
|
padding-left: 0 !important;
|
2016-10-27 21:27:35 +02:00
|
|
|
margin-left: -36px;
|
2016-10-25 20:22:38 +02:00
|
|
|
}
|
2020-06-16 17:53:57 +02:00
|
|
|
|
|
|
|
.tab-merged .header-title {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
@include media-breakpoint-up(sm) {
|
2014-01-24 18:34:26 +01:00
|
|
|
.modal-dialog {
|
2015-09-25 18:14:46 +02:00
|
|
|
padding: 0 0 2em $menu-width;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2020-06-16 17:53:57 +02:00
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
header.tab-merged {
|
|
|
|
padding-left: $desktop-nice-padding;
|
|
|
|
}
|
|
|
|
}
|
2014-02-05 12:31:31 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
@include media-breakpoint-up(xl) {
|
2014-02-05 12:31:31 +01:00
|
|
|
.modal-dialog {
|
2018-11-04 22:46:42 +01:00
|
|
|
max-width: 100em;
|
2015-11-03 13:15:33 +01:00
|
|
|
padding: 0 0 2em;
|
2014-02-05 12:31:31 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
}
|