debian-mirror-gitlab/app/assets/stylesheets/framework/stacked_progress_bar.scss

55 lines
849 B
SCSS
Raw Normal View History

2018-03-17 18:26:18 +05:30
.stacked-progress-bar {
display: flex;
height: 16px;
border-radius: 10px;
overflow: hidden;
2019-03-02 22:35:43 +05:30
background-color: $gray-100;
2018-03-17 18:26:18 +05:30
.status-unavailable,
.status-green,
.status-neutral,
.status-red, {
height: 100%;
2018-11-18 11:00:15 +05:30
min-width: 40px;
2018-03-17 18:26:18 +05:30
padding: 0 5px;
font-size: $tooltip-font-size;
font-weight: normal;
2020-04-22 19:07:51 +05:30
color: $white;
2018-03-17 18:26:18 +05:30
line-height: 16px;
&:hover {
cursor: pointer;
}
}
.status-unavailable {
padding: 0 10px;
2020-10-24 23:57:45 +05:30
color: $gray-500;
2018-03-17 18:26:18 +05:30
}
.status-green {
background-color: $green-500;
&:hover {
background-color: $green-600;
}
}
.status-neutral {
2020-07-28 23:09:34 +05:30
background-color: $gray-100;
2020-11-24 15:15:51 +05:30
color: $gray-900;
2018-03-17 18:26:18 +05:30
&:hover {
2020-10-24 23:57:45 +05:30
background-color: $gray-200;
2018-03-17 18:26:18 +05:30
}
}
.status-red {
background-color: $red-500;
&:hover {
background-color: $red-600;
}
}
}