Custom.scss
1.0 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
@import "../../../scss/krhr/_mixins-component";
//components
@include button-generate('.submit_btn',$success);
//buttons
//RplyTextarea
.rply_textarea_wrap{
position: relative;
padding: 2px;
margin: 5px;
top: 30px;
}
.member_image{
position: absolute;
left: 0;
top: 5px;
img{
width: 45px;
height: 45px;
border-radius: 5px;
}
}
.member_msg_input{
margin-left: 50px;
}
.c_gray{
color: $minBlack;
}
//datetime
.datetime_picker_wrap{
position: relative;
}
//alert
.alert{
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert_danger{
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert_warning{
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.alert_info{
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.alert_success{
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
@include button-custom('success');
@include button-custom('danger');