File tree 2 files changed +20
-6
lines changed
2 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 2
2
border : 1px solid transparent ;
3
3
color : #fff ;
4
4
position : relative ;
5
- text-shadow : 0 0 1px rgba (#000 , .25 );
5
+ text-shadow : 0 0 1px 1 px rgba (#000 , .4 );
6
6
border-radius : $alertRadius ;
7
7
font-weight : $alertFontWeight ;
8
8
margin : 0 0 $marginBottom 0 ;
21
21
border-color : $success ;
22
22
background : fade-out ($success , .2 );
23
23
& :before {
24
- content : ' \f20b ' ;
24
+ content : ' \f145 ' ;
25
25
}
26
26
}
27
27
& .error {
28
28
border-color : $error ;
29
29
background : fade-out ($error , .2 );
30
30
& :before {
31
- content : ' \f150 ' ;
31
+ content : ' \f144 ' ;
32
+ }
33
+ }
34
+ & .warning {
35
+ border-color : $warning ;
36
+ background : fade-out ($warning , .2 );
37
+ & :before {
38
+ content : ' \f226 ' ;
32
39
}
33
40
}
34
41
& .info {
35
42
border-color : $info ;
36
43
background : fade-out ($info , .2 );
37
44
& :before {
38
- content : ' \f121 ' ;
45
+ content : ' \f14a ' ;
39
46
}
40
47
}
41
48
& .light {
42
49
background : none ;
43
50
text-shadow : none ;
44
51
font-weight : normal ;
45
52
color : $dark40 ;
53
+ text-shadow : none ;
46
54
& .success {
47
55
& :before {
48
56
color : $success ;
53
61
color : $error ;
54
62
}
55
63
}
64
+ & .warning {
65
+ & :before {
66
+ color : $warning ;
67
+ }
68
+ }
56
69
& .info {
57
70
& :before {
58
71
color : $info ;
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ $light: #F5F6FA;
21
21
22
22
$success : #69DD95 ;
23
23
$error : #F26175 ;
24
+ $warning : #F8C93F ;
24
25
$info : $secondary ;
25
26
26
27
// Base
@@ -187,10 +188,10 @@ $tableBorder: $border;
187
188
$tablePaddingV : $inputPaddingV ;
188
189
$tablePaddingH : $inputPaddingH ;
189
190
$tableLineHeight : $lineHeight ;
190
- $tableHover : $line ;
191
+ $tableHover : $light ;
191
192
$tableThBackground : none ;
192
193
$tableTdBackground : none ;
193
- $tableStripeBackground : $light ;
194
+ $tableStripeBackground : rgba ( $light , .6 ) ;
194
195
195
196
// Helper
196
197
You can’t perform that action at this time.
0 commit comments