_modal.scss
1.28 KB
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
/*
* Component: modal
* ----------------
*/
.modal {
background: rgba(0,0,0,.3);
}
.modal-content {
@include border-radius-same(0);
@include box-shadow(0 2px 3px rgba(0,0,0,.125) !important);
border: 0;
@media (min-width: $screen-sm-min) {
@include box-shadow(0 2px 3px rgba(0,0,0,.125) !important);
}
}
.modal-header {
border-bottom-color: $box-border-color;
}
.modal-footer {
border-top-color: $box-border-color;
}
//Modal variants
.modal-primary {
.modal-body {
@extend .bg-light-blue;
}
.modal-header,
.modal-footer {
@extend .bg-light-blue-active;
border-color: darken($light-blue, 10%);
}
}
.modal-warning {
.modal-body {
@extend .bg-yellow;
}
.modal-header,
.modal-footer {
@extend .bg-yellow-active;
border-color: darken($yellow, 10%);
}
}
.modal-info {
.modal-body {
@extend .bg-aqua;
}
.modal-header,
.modal-footer {
@extend .bg-aqua-active;
border-color: darken($aqua, 10%);
}
}
.modal-success {
.modal-body {
@extend .bg-green;
}
.modal-header,
.modal-footer {
@extend .bg-green-active;
border-color: darken($green, 10%);
}
}
.modal-danger {
.modal-body {
@extend .bg-red;
}
.modal-header,
.modal-footer {
@extend .bg-red-active;
border-color: darken($red, 10%);
}
}