progressbar.less
676 Bytes
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
@import "../variable";
@import "../mixins";
.progress {
-webkit-box-shadow:none;
background:#ebedef;
border-radius:32px;
box-shadow:none;
height:12px;
}
.progress-bar {
-webkit-box-shadow:none;
background:@primary;
box-shadow:none;
line-height:12px;
}
.progress-bar-success {
background-color:@success;
}
.progress-bar-warning {
background-color:@warning;
}
.progress-bar-danger {
background-color:@danger;
}
.progress-bar-info {
background-color:@info;
}
.progress-bar-purple {
background-color:@purple
}
.progress.progress-bar-thin {
height: 5px;
}
.progress.progress-bar-large {
height: 20px;
.progress-bar {
line-height: 20px;
}
}