forked from gurayyarar/AdminBSBMaterialDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_modals.scss
51 lines (42 loc) · 977 Bytes
/
_modals.scss
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
.modal {
.modal-header {
border: none;
padding: 25px 25px 5px 25px;
.modal-title {
font-weight: bold;
font-size: 16px;
}
}
.modal-content {
@include border-radius(0);
box-shadow: 0 5px 20px rgba(0,0,0,.31) !important;
border: none;
.modal-body {
color: #777;
padding: 15px 25px;
}
}
.modal-footer {
border: none;
}
}
@each $key, $val in $colors {
.modal-col-#{$key} {
background-color: $val;
.modal-body,
.modal-title {
color: #fff !important;
}
.modal-footer {
background-color: rgba(0,0,0,0.12);
.btn-link {
color: #fff !important;
&:hover,
&:active,
&:focus {
background-color: rgba(0,0,0,0.12);
}
}
}
}
}