Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/issue_box.scss')
-rw-r--r--app/assets/stylesheets/framework/issue_box.scss40
1 files changed, 0 insertions, 40 deletions
diff --git a/app/assets/stylesheets/framework/issue_box.scss b/app/assets/stylesheets/framework/issue_box.scss
deleted file mode 100644
index 8baf70da0c6..00000000000
--- a/app/assets/stylesheets/framework/issue_box.scss
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * Issue box for showing Open/Closed state:
- * Used for Issue#show page, MergeRequest#show page etc
- *
- */
-
-.status-box {
- padding: 0 $gl-btn-padding;
-
- border-radius: $border-radius-default;
- display: block;
- float: left;
- margin-right: $gl-padding-8;
- color: $white;
- font-size: $gl-font-size;
- line-height: $gl-line-height-24;
-
- &.status-box-closed,
- &.status-box-mr-closed {
- background-color: $red-500;
- }
-
- &.status-box-issue-closed,
- &.status-box-alert-resolved,
- &.status-box-mr-merged {
- background-color: $blue-500;
- }
-
- &.status-box-open {
- background-color: $green-500;
- }
-
- &.status-box-expired {
- background-color: $orange-500;
- }
-
- &.status-box-upcoming {
- background: $gl-text-color-secondary;
- }
-}