-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path_progress.scss
More file actions
42 lines (41 loc) · 1.06 KB
/
_progress.scss
File metadata and controls
42 lines (41 loc) · 1.06 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
.progress {
height: 4px;
border-radius: 0;
box-shadow: none;
background: #DDDDDD;
margin-bottom: 20px;
.progress-bar {
box-shadow: none;
@include variations(unquote(".progress-bar"), unquote(""), background-color, $brand-primary);
&.progress-bar-primary{
background: $brand-primary !important;
}
&.progress-bar-info{
background: $brand-info;
}
&.progress-bar-success{
background: $brand-success;
}
&.progress-bar-warning{
background: $brand-warning;
}
&.progress-bar-danger{
background: $brand-danger;
}
}
&.progress-line-primary{
background: rgba($brand-primary,.2);
}
&.progress-line-info{
background: rgba($brand-info,.2);
}
&.progress-line-success{
background: rgba($brand-success,.2);
}
&.progress-line-warning{
background: rgba($brand-warning,.2);
}
&.progress-line-danger{
background: rgba($brand-danger,.2);
}
}