1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

Fixed completed jobs name column misalignment when screen is medium size

This commit is contained in:
Michael Abashian 2017-06-07 11:27:52 -04:00
parent a183ed14f2
commit 91adf25199
2 changed files with 2 additions and 8 deletions

View File

@ -85,9 +85,3 @@
.LabelList-deleteContainer:hover > .LabelList-tagDelete {
color: @default-bg;
}
@media (max-width: 1200px) {
.List-tableCell.col-md-4 {
padding-left: 40px;
}
}

View File

@ -34,7 +34,7 @@ export default ['i18n', function(i18n) {
},
smart_status: {
label: i18n._('Activity'),
columnClass: 'List-tableCell col-lg-2 col-md-2 hidden-sm hidden-xs',
columnClass: 'List-tableCell col-lg-2 col-md-3 hidden-sm hidden-xs',
nosort: true,
ngInclude: "'/static/partials/job-template-smart-status.html'",
type: 'template'
@ -44,7 +44,7 @@ export default ['i18n', function(i18n) {
type: 'labels',
nosort: true,
showDelete: true,
columnClass: 'List-tableCell col-lg-2 col-md-4 hidden-sm hidden-xs'
columnClass: 'List-tableCell col-lg-2 col-md-3 hidden-sm hidden-xs'
}
},