mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
24 lines
487 B
Plaintext
24 lines
487 B
Plaintext
// main: material.less
|
|
|
|
.progress {
|
|
height: 4px;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background: #c8c8c8;
|
|
.progress-bar {
|
|
box-shadow: none;
|
|
&, &-info {
|
|
background-color: @progress-info;
|
|
}
|
|
&-warning {
|
|
background-color: @progress-warning;
|
|
}
|
|
&-danger {
|
|
background-color: @progress-danger;
|
|
}
|
|
&-success {
|
|
background-color: @progress-success;
|
|
}
|
|
}
|
|
}
|