2018-03-17 18:26:18 +05:30
|
|
|
.modal-header {
|
|
|
|
background-color: $modal-body-bg;
|
|
|
|
padding: #{3 * $grid-size} #{2 * $grid-size};
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
.page-title,
|
|
|
|
.modal-title {
|
2018-03-17 18:26:18 +05:30
|
|
|
.color-label {
|
|
|
|
font-size: $gl-font-size;
|
|
|
|
padding: $gl-vert-padding $label-padding-modal;
|
|
|
|
}
|
|
|
|
}
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
.page-title {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2018-03-17 18:26:18 +05:30
|
|
|
}
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.modal-body {
|
2018-03-17 18:26:18 +05:30
|
|
|
background-color: $modal-body-bg;
|
|
|
|
line-height: $line-height-base;
|
|
|
|
min-height: $modal-body-height;
|
2016-06-02 11:05:42 +05:30
|
|
|
position: relative;
|
2018-03-17 18:26:18 +05:30
|
|
|
padding: #{3 * $grid-size} #{2 * $grid-size};
|
|
|
|
text-align: left;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
.form-actions {
|
2018-03-17 18:26:18 +05:30
|
|
|
margin: #{2 * $grid-size} #{-2 * $grid-size} #{-2 * $grid-size};
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.text-danger {
|
2018-03-17 18:26:18 +05:30
|
|
|
font-weight: $gl-font-weight-bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.btn + .btn {
|
|
|
|
margin-left: $grid-size;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.btn + .btn {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: $grid-size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $screen-sm-min) {
|
|
|
|
.btn:first-of-type {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body.modal-open {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.modal-no-backdrop {
|
|
|
|
@extend .modal-dialog;
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
box-shadow: none;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
@media (min-width: $screen-lg-min) {
|
|
|
|
.modal-full {
|
|
|
|
width: 98%;
|
|
|
|
}
|
|
|
|
}
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
.modal {
|
|
|
|
background-color: $black-transparent;
|
|
|
|
z-index: 2100;
|
|
|
|
|
|
|
|
@media (min-width: $screen-md-min) {
|
|
|
|
.modal-dialog {
|
|
|
|
margin: 30px auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.recaptcha-modal .recaptcha-form {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
.recaptcha {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|