gitlab-org--gitlab-foss/app/assets/stylesheets/framework/stacked_progress_bar.scss

55 lines
853 B
SCSS
Raw Normal View History

2018-01-15 11:31:28 +00:00
.stacked-progress-bar {
display: flex;
height: 16px;
border-radius: 10px;
overflow: hidden;
background-color: $gray-100;
2018-01-15 11:31:28 +00:00
.status-unavailable,
.status-green,
.status-neutral,
.status-red, {
height: 100%;
min-width: 40px;
2018-01-15 11:31:28 +00:00
padding: 0 5px;
font-size: $tooltip-font-size;
font-weight: normal;
color: $white;
2018-01-15 11:31:28 +00:00
line-height: 16px;
&:hover {
cursor: pointer;
}
}
.status-unavailable {
padding: 0 10px;
color: $gray-700;
2018-01-15 11:31:28 +00:00
}
.status-green {
background-color: $green-500;
&:hover {
background-color: $green-600;
}
}
.status-neutral {
background-color: $gray-200;
2018-01-15 11:31:28 +00:00
color: $gl-gray-dark;
&:hover {
background-color: $gray-300;
2018-01-15 11:31:28 +00:00
}
}
.status-red {
background-color: $red-500;
&:hover {
background-color: $red-600;
}
}
}