Welcome to mirror list, hosted at ThFree Co, Russian Federation.

modal.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b581780447c3eb206709ae0b2c13827742f0e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.modal-body {
  position: relative;
  padding: 15px;

  .form-actions {
    margin: -$gl-padding + 1;
    margin-top: 15px;
  }

  .text-danger {
    font-weight: $gl-font-weight-bold;
  }
}

body.modal-open {
  overflow: hidden;
}

.modal-no-backdrop {
  @extend .modal-dialog;

  .modal-content {
    box-shadow: none;
  }
}

@media (min-width: $screen-md-min) {
  .modal-dialog {
    width: 860px;
  }
}

@media (min-width: $screen-lg-min) {
  .modal-full {
    width: 98%;
  }
}