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/generic/issue_box.scss')
-rw-r--r--app/assets/stylesheets/generic/issue_box.scss32
1 files changed, 0 insertions, 32 deletions
diff --git a/app/assets/stylesheets/generic/issue_box.scss b/app/assets/stylesheets/generic/issue_box.scss
deleted file mode 100644
index 9558f241b7c..00000000000
--- a/app/assets/stylesheets/generic/issue_box.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * Issue box for showing Open/Closed state:
- * Used for Issue#show page, MergeRequest#show page etc
- *
- */
-
-.issue-box {
- display: inline-block;
- padding: 7px 13px;
- font-weight: normal;
- margin-right: 5px;
-
- &.issue-box-closed {
- background-color: $gl-danger;
- color: #FFF;
- }
-
- &.issue-box-merged {
- background-color: $gl-primary;
- color: #FFF;
- }
-
- &.issue-box-open {
- background-color: $gl-success;
- color: #FFF;
- }
-
- &.issue-box-expired {
- background: #cea61b;
- color: #FFF;
- }
-}