mirror of
https://github.com/humhub/humhub.git
synced 2025-02-22 10:14:19 +01:00
25 lines
435 B
Plaintext
25 lines
435 B
Plaintext
//
|
|
// Progressbar
|
|
// --------------------------------------------------
|
|
.progress {
|
|
height: 10px;
|
|
margin-bottom: 15px;
|
|
box-shadow: none;
|
|
background: @background-color-page;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.progress-bar-info {
|
|
background-color: @info;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
//
|
|
// Pjax page loader bar since 1.2
|
|
//
|
|
#nprogress .bar {
|
|
height: 2px;
|
|
background: lighten(@info, 8%);
|
|
}
|