2017-12-09 07:52:48 +00:00
|
|
|
$modal-z: 40 !default
|
2017-07-28 20:05:15 +00:00
|
|
|
|
2020-01-05 13:27:54 +00:00
|
|
|
$modal-background-background-color: bulmaRgba($scheme-invert, 0.86) !default
|
2017-07-28 20:05:15 +00:00
|
|
|
|
|
|
|
$modal-content-width: 640px !default
|
|
|
|
$modal-content-margin-mobile: 20px !default
|
|
|
|
$modal-content-spacing-mobile: 160px !default
|
|
|
|
$modal-content-spacing-tablet: 40px !default
|
|
|
|
|
|
|
|
$modal-close-dimensions: 40px !default
|
|
|
|
$modal-close-right: 20px !default
|
|
|
|
$modal-close-top: 20px !default
|
|
|
|
|
|
|
|
$modal-card-spacing: 40px !default
|
|
|
|
|
|
|
|
$modal-card-head-background-color: $background !default
|
|
|
|
$modal-card-head-border-bottom: 1px solid $border !default
|
|
|
|
$modal-card-head-padding: 20px !default
|
|
|
|
$modal-card-head-radius: $radius-large !default
|
|
|
|
|
|
|
|
$modal-card-title-color: $text-strong !default
|
|
|
|
$modal-card-title-line-height: 1 !default
|
|
|
|
$modal-card-title-size: $size-4 !default
|
|
|
|
|
|
|
|
$modal-card-foot-radius: $radius-large !default
|
|
|
|
$modal-card-foot-border-top: 1px solid $border !default
|
|
|
|
|
2019-10-13 14:12:30 +00:00
|
|
|
$modal-card-body-background-color: $scheme-main !default
|
2017-07-28 20:05:15 +00:00
|
|
|
$modal-card-body-padding: 20px !default
|
|
|
|
|
|
|
|
.modal
|
2018-09-04 13:24:50 +00:00
|
|
|
@extend %overlay
|
2017-07-28 20:05:15 +00:00
|
|
|
align-items: center
|
|
|
|
display: none
|
2018-05-31 13:15:17 +00:00
|
|
|
flex-direction: column
|
2017-07-28 20:05:15 +00:00
|
|
|
justify-content: center
|
|
|
|
overflow: hidden
|
|
|
|
position: fixed
|
|
|
|
z-index: $modal-z
|
|
|
|
// Modifiers
|
|
|
|
&.is-active
|
|
|
|
display: flex
|
|
|
|
|
2016-02-14 22:10:05 +00:00
|
|
|
.modal-background
|
2018-09-04 13:24:50 +00:00
|
|
|
@extend %overlay
|
2017-07-28 20:05:15 +00:00
|
|
|
background-color: $modal-background-background-color
|
2016-02-14 22:10:05 +00:00
|
|
|
|
2016-09-22 21:03:22 +00:00
|
|
|
.modal-content,
|
|
|
|
.modal-card
|
2017-07-28 20:05:15 +00:00
|
|
|
margin: 0 $modal-content-margin-mobile
|
|
|
|
max-height: calc(100vh - #{$modal-content-spacing-mobile})
|
2016-02-14 22:10:05 +00:00
|
|
|
overflow: auto
|
|
|
|
position: relative
|
|
|
|
width: 100%
|
2016-04-10 15:27:27 +00:00
|
|
|
// Responsiveness
|
2016-02-14 22:10:05 +00:00
|
|
|
+tablet
|
|
|
|
margin: 0 auto
|
2017-07-28 20:05:15 +00:00
|
|
|
max-height: calc(100vh - #{$modal-content-spacing-tablet})
|
|
|
|
width: $modal-content-width
|
2016-02-14 22:10:05 +00:00
|
|
|
|
|
|
|
.modal-close
|
2018-09-04 13:24:50 +00:00
|
|
|
@extend %delete
|
2016-02-14 22:10:05 +00:00
|
|
|
background: none
|
2017-07-28 20:05:15 +00:00
|
|
|
height: $modal-close-dimensions
|
2016-02-14 22:10:05 +00:00
|
|
|
position: fixed
|
2017-07-28 20:05:15 +00:00
|
|
|
right: $modal-close-right
|
|
|
|
top: $modal-close-top
|
|
|
|
width: $modal-close-dimensions
|
2016-02-14 22:10:05 +00:00
|
|
|
|
2016-05-07 14:08:27 +00:00
|
|
|
.modal-card
|
|
|
|
display: flex
|
|
|
|
flex-direction: column
|
2017-07-28 20:05:15 +00:00
|
|
|
max-height: calc(100vh - #{$modal-card-spacing})
|
2016-05-07 14:08:27 +00:00
|
|
|
overflow: hidden
|
2018-06-01 12:17:53 +00:00
|
|
|
-ms-overflow-y: visible
|
2016-05-07 14:08:27 +00:00
|
|
|
|
|
|
|
.modal-card-head,
|
|
|
|
.modal-card-foot
|
|
|
|
align-items: center
|
2017-07-28 20:05:15 +00:00
|
|
|
background-color: $modal-card-head-background-color
|
2016-05-07 14:08:27 +00:00
|
|
|
display: flex
|
|
|
|
flex-shrink: 0
|
|
|
|
justify-content: flex-start
|
2017-07-28 20:05:15 +00:00
|
|
|
padding: $modal-card-head-padding
|
2016-05-07 14:08:27 +00:00
|
|
|
position: relative
|
|
|
|
|
|
|
|
.modal-card-head
|
2017-07-28 20:05:15 +00:00
|
|
|
border-bottom: $modal-card-head-border-bottom
|
|
|
|
border-top-left-radius: $modal-card-head-radius
|
|
|
|
border-top-right-radius: $modal-card-head-radius
|
2016-05-07 14:08:27 +00:00
|
|
|
|
|
|
|
.modal-card-title
|
2017-07-28 20:05:15 +00:00
|
|
|
color: $modal-card-title-color
|
2016-07-31 10:45:56 +00:00
|
|
|
flex-grow: 1
|
2016-09-11 11:00:49 +00:00
|
|
|
flex-shrink: 0
|
2017-07-28 20:05:15 +00:00
|
|
|
font-size: $modal-card-title-size
|
|
|
|
line-height: $modal-card-title-line-height
|
2016-05-07 14:08:27 +00:00
|
|
|
|
|
|
|
.modal-card-foot
|
2017-07-28 20:05:15 +00:00
|
|
|
border-bottom-left-radius: $modal-card-foot-radius
|
|
|
|
border-bottom-right-radius: $modal-card-foot-radius
|
|
|
|
border-top: $modal-card-foot-border-top
|
2016-05-07 14:08:27 +00:00
|
|
|
.button
|
|
|
|
&:not(:last-child)
|
2019-05-17 12:50:39 +00:00
|
|
|
margin-right: 0.5em
|
2016-05-07 14:08:27 +00:00
|
|
|
|
|
|
|
.modal-card-body
|
2016-12-22 19:51:52 +00:00
|
|
|
+overflow-touch
|
2017-07-28 20:05:15 +00:00
|
|
|
background-color: $modal-card-body-background-color
|
2016-07-31 10:45:56 +00:00
|
|
|
flex-grow: 1
|
2016-09-11 11:00:49 +00:00
|
|
|
flex-shrink: 1
|
2016-05-07 14:08:27 +00:00
|
|
|
overflow: auto
|
2017-07-28 20:05:15 +00:00
|
|
|
padding: $modal-card-body-padding
|