mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
19 lines
497 B
SCSS
19 lines
497 B
SCSS
/*
|
|
make sure that the progressbar title does not wrap and does not need to be embedded in a container with white-space: nowrap
|
|
used for example in the project-overview report
|
|
*/
|
|
.progress-group {
|
|
.progress-title {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
.progress-text {
|
|
display: inline-block;
|
|
width: 1%;
|
|
}
|
|
.progress-number {
|
|
display: inline-block;
|
|
width: 98%;
|
|
float: none;
|
|
}
|
|
}
|
|
} |