Commit 9afc930b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Make ui-box-show more visible. Refactor some css classes

parent 6404d697
...@@ -140,27 +140,6 @@ p.time { ...@@ -140,27 +140,6 @@ p.time {
border-bottom: 2px solid #F90; border-bottom: 2px solid #F90;
} }
.status_info {
font-size: 14px;
padding: 5px 15px;
line-height: 26px;
text-align: center;
float: right;
position: relative;
top: -5px;
@include border-radius(4px);
&.success {
background: #4A4;
color: #FFF;
}
&.error {
background: #DA4E49;
color: #FFF;
}
}
.thin_area{ .thin_area{
height: 150px; height: 150px;
} }
......
...@@ -34,6 +34,8 @@ ...@@ -34,6 +34,8 @@
&.ui-box-show { &.ui-box-show {
margin:20px 0; margin:20px 0;
background: #FFF; background: #FFF;
box-shadow: inset 0 1px 0 #fff, 0 1px 5px #f1f1f1;
@include linear-gradient(#fafafa, #f1f1f1);
.control-group { .control-group {
margin-bottom: 0; margin-bottom: 0;
......
...@@ -87,3 +87,24 @@ pre.well-pre { ...@@ -87,3 +87,24 @@ pre.well-pre {
font-weight: bold; font-weight: bold;
@include box-shadow(inset 0 2px 4px rgba(0,0,0,.15)); @include box-shadow(inset 0 2px 4px rgba(0,0,0,.15));
} }
/** Big Labels **/
.state-label {
font-size: 14px;
padding: 5px 15px;
text-align: center;
float: right;
position: relative;
top: -5px;
@include border-radius(4px);
&.state-label-green {
background: #4A4;
color: #FFF;
}
&.state-label-red {
background: #DA4E49;
color: #FFF;
}
}
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
.ui-box-head .ui-box-head
%h4.box-title %h4.box-title
- if @issue.closed? - if @issue.closed?
.error.status_info Closed .state-label.state-label-red Closed
= gfm escape_once(@issue.title) = gfm escape_once(@issue.title)
.ui-box-body .ui-box-body
......
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
%h4.box-title %h4.box-title
= gfm escape_once(@merge_request.title) = gfm escape_once(@merge_request.title)
- if @merge_request.merged? - if @merge_request.merged?
.success.status_info .state-label.state-label-green
%i.icon-ok %i.icon-ok
Merged Merged
- elsif @merge_request.closed? - elsif @merge_request.closed?
.error.status_info Closed .state-label.state-label-red
Closed
.ui-box-body .ui-box-body
%div %div
...@@ -32,7 +33,7 @@ ...@@ -32,7 +33,7 @@
%span %span
%i.icon-remove %i.icon-remove
Closed by #{link_to_member(@project, @merge_request.closed_event.author)} Closed by #{link_to_member(@project, @merge_request.closed_event.author)}
%small #{time_ago_in_words(@merge_request.closed_event.created_at)} ago. %span #{time_ago_in_words(@merge_request.closed_event.created_at)} ago.
- if @merge_request.merged? - if @merge_request.merged?
.ui-box-bottom.alert-success .ui-box-bottom.alert-success
%span %span
......
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
.ui-box-head .ui-box-head
%h4.box-title %h4.box-title
- if @milestone.closed? - if @milestone.closed?
.error.status_info Closed .state-label.state-label-red Closed
- elsif @milestone.expired? - elsif @milestone.expired?
.error.status_info Expired .state-label.state-label-red Expired
= gfm escape_once(@milestone.title) = gfm escape_once(@milestone.title)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment