mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
141 lines
3.3 KiB
SCSS
141 lines
3.3 KiB
SCSS
@import "../utilities/mixins";
|
|
|
|
$modal-z: 40 !default;
|
|
|
|
$modal-background-background-color: bulmaRgba($scheme-invert, 0.86) !default;
|
|
|
|
$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;
|
|
|
|
$modal-card-body-background-color: $scheme-main !default;
|
|
$modal-card-body-padding: 20px !default;
|
|
|
|
$modal-breakpoint: $tablet !default;
|
|
|
|
.#{$class-prefix}modal {
|
|
@extend %overlay;
|
|
|
|
align-items: center;
|
|
display: none;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
z-index: $modal-z;
|
|
|
|
// Modifiers
|
|
&.is-active {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.#{$class-prefix}modal-background {
|
|
@extend %overlay;
|
|
|
|
background-color: $modal-background-background-color;
|
|
}
|
|
|
|
.#{$class-prefix}modal-content,
|
|
.#{$class-prefix}modal-card {
|
|
margin: 0 $modal-content-margin-mobile;
|
|
max-height: calc(100vh - #{$modal-content-spacing-mobile});
|
|
overflow: auto;
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
// Responsiveness
|
|
@include from($modal-breakpoint) {
|
|
margin: 0 auto;
|
|
max-height: calc(100vh - #{$modal-content-spacing-tablet});
|
|
width: $modal-content-width;
|
|
}
|
|
}
|
|
|
|
.#{$class-prefix}modal-close {
|
|
@extend %delete;
|
|
|
|
background: none;
|
|
height: $modal-close-dimensions;
|
|
position: fixed;
|
|
|
|
@include ltr-position($modal-close-right);
|
|
|
|
top: $modal-close-top;
|
|
width: $modal-close-dimensions;
|
|
}
|
|
|
|
.#{$class-prefix}modal-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: calc(100vh - #{$modal-card-spacing});
|
|
overflow: hidden;
|
|
-ms-overflow-y: visible;
|
|
}
|
|
|
|
.#{$class-prefix}modal-card-head,
|
|
.#{$class-prefix}modal-card-foot {
|
|
align-items: center;
|
|
background-color: $modal-card-head-background-color;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
justify-content: flex-start;
|
|
padding: $modal-card-head-padding;
|
|
position: relative;
|
|
}
|
|
|
|
.#{$class-prefix}modal-card-head {
|
|
border-bottom: $modal-card-head-border-bottom;
|
|
border-top-left-radius: $modal-card-head-radius;
|
|
border-top-right-radius: $modal-card-head-radius;
|
|
}
|
|
|
|
.#{$class-prefix}modal-card-title {
|
|
color: $modal-card-title-color;
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
font-size: $modal-card-title-size;
|
|
line-height: $modal-card-title-line-height;
|
|
}
|
|
|
|
.#{$class-prefix}modal-card-foot {
|
|
border-bottom-left-radius: $modal-card-foot-radius;
|
|
border-bottom-right-radius: $modal-card-foot-radius;
|
|
border-top: $modal-card-foot-border-top;
|
|
|
|
.#{$class-prefix}button {
|
|
&:not(:last-child) {
|
|
@include ltr-property("margin", 0.5em);
|
|
}
|
|
}
|
|
}
|
|
|
|
.#{$class-prefix}modal-card-body {
|
|
@include overflow-touch;
|
|
|
|
background-color: $modal-card-body-background-color;
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
overflow: auto;
|
|
padding: $modal-card-body-padding;
|
|
}
|