fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_modal.scss

40 lines
757 B
SCSS
Executable File

// Variables
//------------------------------------------------------
$modal-font-color: $darkgray-dark !default;
$modal-radius: 4px;
$modal-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default;
// Exports
//------------------------------------------------------
@include exports("modal") {
/**
* modal
* --------------------------------------------------
*/
.modal {
&-content {
border: none;
@include radius($type: border-radius, $value: $modal-radius);
color: $modal-font-color;
@include box-shadow($value: $modal-shadow);
}
&-header {
border-bottom: none;
}
&-body {
padding: 0 15px;
}
&-footer {
border-top: none;
}
}
}