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

modals.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba5fde0f17f7f9db82adf0c059ba4734628b0c39 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Modals
.modal {
  align-items: center;
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;

  &:target,
  &.active {
    display: flex;
    opacity: 1;
    z-index: 1988;

    .modal-overlay {
      background: fade(@core-dark-color, 50%);
      bottom: 0;
      display: block;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }

    .modal-container {
      animation: slide-down .216s;
    }
  }
}

.modal-container {
  background: #fff;
  border-radius: @border-radius;
  display: block;
  margin: 0 auto;
  padding: 0;
  .shadow;
  text-align: left;
  z-index: 1988;

  .modal-header {
    padding: 1.5rem;

    .modal-title {
      font-size: 1.6rem;
      margin: 0;
    }
  }

  .modal-body {
    max-height: 50vh;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
  }

  .modal-footer {
    padding: 1.5rem;
    text-align: right;
  }
}

@media screen and (min-width: 640px) {
  .modal-container {
    width: 64rem;
  }
}

@media screen and (min-width: 320px) {
  .modal-sm {
    .modal-container {
      width: 32rem;
    }
  }
}