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

Lookup dialog

Fixed Select column so that it always appears all the way to the right and is always the same width. Looks much better :)
This commit is contained in:
Chris Houseknecht 2014-07-29 15:17:59 -04:00
parent a2ddeb1f22
commit a960638b68

View File

@ -473,7 +473,7 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
}
}
if (options.mode === 'select' || options.mode === 'lookup') {
html += "<th>Select</th>";
html += "<th class=\"col-lg-1 col-md-1 col-sm-2 col-xs-2\">Select</th>";
} else if (options.mode === 'edit' && list.fieldActions) {
html += "<th class=\"actions-column";
html += (list.fieldActions && list.fieldActions.columnClass) ? " " + list.fieldActions.columnClass : "";