summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/stacked-progress-bar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/stacked-progress-bar.scss')
-rw-r--r--app/assets/stylesheets/framework/stacked-progress-bar.scss54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/assets/stylesheets/framework/stacked-progress-bar.scss b/app/assets/stylesheets/framework/stacked-progress-bar.scss
deleted file mode 100644
index 4869cda73e5..00000000000
--- a/app/assets/stylesheets/framework/stacked-progress-bar.scss
+++ /dev/null
@@ -1,54 +0,0 @@
-.stacked-progress-bar {
- display: flex;
- height: 16px;
- border-radius: 10px;
- overflow: hidden;
- background-color: $theme-gray-100;
-
- .status-unavailable,
- .status-green,
- .status-neutral,
- .status-red, {
- height: 100%;
- min-width: 25px;
- padding: 0 5px;
- font-size: $tooltip-font-size;
- font-weight: normal;
- color: $white-light;
- line-height: 16px;
-
- &:hover {
- cursor: pointer;
- }
- }
-
- .status-unavailable {
- padding: 0 10px;
- color: $theme-gray-700;
- }
-
- .status-green {
- background-color: $green-500;
-
- &:hover {
- background-color: $green-600;
- }
- }
-
- .status-neutral {
- background-color: $theme-gray-200;
- color: $gl-gray-dark;
-
- &:hover {
- background-color: $theme-gray-300;
- }
- }
-
- .status-red {
- background-color: $red-500;
-
- &:hover {
- background-color: $red-600;
- }
- }
-}