summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-02-22 12:52:34 +0000
committerPhil Hughes <me@iamphill.com>2016-02-22 14:11:41 +0000
commit416b49d3f0afeaeec75e48190e5e22eea38cb5a6 (patch)
tree0a284b42581e790824786353828a6c5b2fec7c06
parentf51d8af5a72e563b3ea87668b6f4981dcbcdcd14 (diff)
downloadgitlab-ce-status-indicator-size.tar.gz
Changed the size of status indicatorsstatus-indicator-size
Closes #12763
-rw-r--r--app/assets/stylesheets/framework/issue_box.scss9
1 files changed, 3 insertions, 6 deletions
diff --git a/app/assets/stylesheets/framework/issue_box.scss b/app/assets/stylesheets/framework/issue_box.scss
index 08dcb563dce..5d7fd36be16 100644
--- a/app/assets/stylesheets/framework/issue_box.scss
+++ b/app/assets/stylesheets/framework/issue_box.scss
@@ -6,31 +6,28 @@
.status-box {
@include border-radius(3px);
-
display: block;
float: left;
padding: 0 $gl-btn-padding;
- font-weight: normal;
+ margin-top: 5px;
margin-right: 10px;
+ color: #FFF;
font-size: $gl-font-size;
+ line-height: 25px;
&.status-box-closed {
background-color: $gl-danger;
- color: #FFF;
}
&.status-box-merged {
background-color: $gl-primary;
- color: #FFF;
}
&.status-box-open {
background-color: $green-light;
- color: #FFF;
}
&.status-box-expired {
background: #cea61b;
- color: #FFF;
}
}