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:
authorDouwe Maan <douwe@gitlab.com>2015-12-16 18:13:22 +0300
committerDouwe Maan <douwe@gitlab.com>2015-12-16 18:13:22 +0300
commit79c90821acdcaeac9147f2cfab4ae0857f85d8be (patch)
treee6e136f422e4b020239df0e8d1135cbe3a9ebc58 /app/assets/stylesheets/framework/issue_box.scss
parent41d6b3701ef13242e727515ee0bc9f4e622ced2d (diff)
Rename .issuable-details to .detail-page (and -header and -description)
Diffstat (limited to 'app/assets/stylesheets/framework/issue_box.scss')
-rw-r--r--app/assets/stylesheets/framework/issue_box.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/stylesheets/framework/issue_box.scss b/app/assets/stylesheets/framework/issue_box.scss
index f12d68b5a1f..fba67ba0b64 100644
--- a/app/assets/stylesheets/framework/issue_box.scss
+++ b/app/assets/stylesheets/framework/issue_box.scss
@@ -4,7 +4,7 @@
*
*/
-.issue-box {
+.status-box {
@include border-radius(2px);
display: block;
@@ -14,22 +14,22 @@
margin-right: 10px;
font-size: $gl-font-size;
- &.issue-box-closed {
+ &.status-box-closed {
background-color: $gl-danger;
color: #FFF;
}
- &.issue-box-merged {
+ &.status-box-merged {
background-color: $gl-primary;
color: #FFF;
}
- &.issue-box-open {
+ &.status-box-open {
background-color: #019875;
color: #FFF;
}
- &.issue-box-expired {
+ &.status-box-expired {
background: #cea61b;
color: #FFF;
}