Commit 63b49c3c authored by Phil Hughes's avatar Phil Hughes

Merge branch '30949-empty-states' into 'master'

Center all empty states

Closes #30949

See merge request !11249
parents f6d82455 343e37b8
...@@ -312,7 +312,7 @@ ...@@ -312,7 +312,7 @@
} }
.empty-state { .empty-state {
margin: 100px 0 0; margin: 5% auto 0;
.text-content { .text-content {
max-width: 460px; max-width: 460px;
...@@ -335,27 +335,12 @@ ...@@ -335,27 +335,12 @@
} }
.btn { .btn {
margin: $btn-side-margin $btn-side-margin 0 0; margin: $btn-side-margin 5px;
}
@media(max-width: $screen-xs-max) {
margin-top: 50px;
text-align: center;
.btn { @media(max-width: $screen-xs-max) {
width: 100%; width: 100%;
} }
} }
@media(min-width: $screen-xs-max) {
&.merge-requests .text-content {
margin-top: 40px;
}
&.labels .text-content {
margin-top: 70px;
}
}
} }
.flex-container-block { .flex-container-block {
......
...@@ -8,10 +8,6 @@ ...@@ -8,10 +8,6 @@
white-space: nowrap; white-space: nowrap;
} }
.empty-state {
margin: 5% auto 0;
}
.table-holder { .table-holder {
width: 100%; width: 100%;
......
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
- has_button = button_path || project_select_button - has_button = button_path || project_select_button
.row.empty-state .row.empty-state
.pull-right.col-xs-12{ class: "#{'col-sm-6' if has_button}" } .col-xs-12
.svg-content .svg-content
= render 'shared/empty_states/icons/issues.svg' = render 'shared/empty_states/icons/issues.svg'
.col-xs-12{ class: "#{'col-sm-6' if has_button}" } .col-xs-12.text-center
.text-content .text-content
- if has_button && current_user - if has_button && current_user
%h4 %h4
......
.row.empty-state.labels .row.empty-state.labels
.pull-right.col-xs-12.col-sm-6 .col-xs-12
.svg-content .svg-content
= render 'shared/empty_states/icons/labels.svg' = render 'shared/empty_states/icons/labels.svg'
.col-xs-12.col-sm-6 .col-xs-12.text-center
.text-content .text-content
%h4 Labels can be applied to issues and merge requests to categorize them. %h4 Labels can be applied to issues and merge requests to categorize them.
%p You can also star a label to make it a priority label. %p You can also star a label to make it a priority label.
......
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
- has_button = button_path || project_select_button - has_button = button_path || project_select_button
.row.empty-state.merge-requests .row.empty-state.merge-requests
.col-xs-12{ class: "#{'col-sm-6 pull-right' if has_button}" } .col-xs-12
.svg-content .svg-content
= render 'shared/empty_states/icons/merge_requests.svg' = render 'shared/empty_states/icons/merge_requests.svg'
.col-xs-12{ class: "#{'col-sm-6' if has_button}" } .col-xs-12.text-center
.text-content .text-content
- if has_button - if has_button
%h4 %h4
......
---
title: Center all empty states
merge_request:
author:
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