debian-mirror-gitlab/app/assets/stylesheets/framework/modal.scss

174 lines
2.9 KiB
SCSS
Raw Normal View History

2018-11-08 19:23:39 +05:30
.modal-xl {
max-width: 98%;
}
2019-12-04 20:38:33 +05:30
.modal-1040 {
@include media-breakpoint-up(xl) {
max-width: 1040px;
}
}
2018-03-17 18:26:18 +05:30
.modal-header {
background-color: $modal-body-bg;
2018-03-27 19:54:05 +05:30
.page-title,
.modal-title {
2020-04-08 14:13:33 +05:30
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
2018-05-01 15:08:00 +05:30
.modal-title-with-label span {
vertical-align: middle;
display: inline-block;
}
2018-03-17 18:26:18 +05:30
}
2018-03-27 19:54:05 +05:30
2018-12-05 23:21:45 +05:30
.modal-title {
2019-09-30 21:07:59 +05:30
line-height: $gl-line-height-24;
// leave enough space for the close icon
2018-12-05 23:21:45 +05:30
&.mw-100,
&.w-100 {
2019-09-30 21:07:59 +05:30
margin-right: -$modal-header-padding-x;
padding-right: $modal-header-padding-x;
2018-12-05 23:21:45 +05:30
}
}
2019-09-30 21:07:59 +05:30
.close {
font-weight: $gl-font-weight-normal;
line-height: $gl-line-height;
color: $gray-900;
opacity: 1;
}
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;
2016-06-02 11:05:42 +05:30
position: relative;
2019-09-30 21:07:59 +05:30
min-height: $modal-body-height;
2019-12-26 22:10:19 +05:30
padding: #{2 * $grid-size};
2018-03-17 18:26:18 +05:30
text-align: left;
2019-07-31 22:56:46 +05:30
white-space: normal;
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;
2019-09-30 21:07:59 +05:30
.btn {
margin: 0;
}
2020-03-13 15:44:24 +05:30
.btn + .btn,
2019-09-04 21:01:54 +05:30
.btn + .btn-group,
2019-12-26 22:10:19 +05:30
.btn-group + .btn,
.btn-group + .btn-group {
2018-03-17 18:26:18 +05:30
margin-left: $grid-size;
}
2019-09-30 21:07:59 +05:30
.btn-group .btn + .btn {
margin-left: -1px;
}
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
flex-direction: column;
2019-09-30 21:07:59 +05:30
.btn-group .btn + .btn {
margin-left: -1px;
margin-top: 0;
}
2018-03-17 18:26:18 +05:30
}
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
2018-03-17 18:26:18 +05:30
.modal {
background-color: $black-transparent;
2019-09-30 21:07:59 +05:30
.modal-content {
border-radius: $modal-border-radius;
> :first-child {
border-top-left-radius: $modal-border-radius;
border-top-right-radius: $modal-border-radius;
}
> :last-child {
border-bottom-left-radius: $modal-border-radius;
border-bottom-right-radius: $modal-border-radius;
}
}
@include media-breakpoint-up(sm) {
2018-03-17 18:26:18 +05:30
.modal-dialog {
2019-09-30 21:07:59 +05:30
margin: 64px auto;
2018-03-17 18:26:18 +05:30
}
}
}
.recaptcha-modal .recaptcha-form {
display: inline-block;
.recaptcha {
margin: 0;
}
}
2019-02-15 15:39:39 +05:30
.issues-import-modal,
.issues-export-modal {
.modal-header {
justify-content: flex-start;
.import-export-svg-container {
flex-grow: 1;
height: 56px;
padding: $gl-btn-padding $gl-btn-padding 0;
2019-07-07 11:18:12 +05:30
text-align: right;
2019-02-15 15:39:39 +05:30
2019-07-07 11:18:12 +05:30
.illustration {
height: inherit;
width: initial;
2019-02-15 15:39:39 +05:30
}
}
}
.modal-body {
padding: 0;
.modal-subheader {
justify-content: flex-start;
align-items: center;
border-bottom: 1px solid $modal-border-color;
padding: 14px;
}
.modal-text {
padding: $gl-padding-24 $gl-padding;
min-height: $modal-body-height;
}
}
.checkmark {
color: $green-400;
}
}