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

Merge pull request #6488 from mabashian/6431-completed-jobs-name

Fixed completed jobs name column misalignment when screen is medium size
This commit is contained in:
Michael Abashian 2017-06-07 14:39:49 -04:00 committed by GitHub
commit 5cfc4ded84
2 changed files with 2 additions and 8 deletions

View File

@ -85,9 +85,3 @@
.LabelList-deleteContainer:hover > .LabelList-tagDelete { .LabelList-deleteContainer:hover > .LabelList-tagDelete {
color: @default-bg; 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: { smart_status: {
label: i18n._('Activity'), 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, nosort: true,
ngInclude: "'/static/partials/job-template-smart-status.html'", ngInclude: "'/static/partials/job-template-smart-status.html'",
type: 'template' type: 'template'
@ -44,7 +44,7 @@ export default ['i18n', function(i18n) {
type: 'labels', type: 'labels',
nosort: true, nosort: true,
showDelete: 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'
} }
}, },