mirror of
https://github.com/ansible/awx.git
synced 2026-03-22 11:25:08 -02:30
Fixes issue with inventory group names that are extremely long.
This commit is contained in:
@@ -109,7 +109,7 @@ table, tbody {
|
|||||||
.List-tableCell {
|
.List-tableCell {
|
||||||
padding: 7px 15px;
|
padding: 7px 15px;
|
||||||
border-top:0px!important;
|
border-top:0px!important;
|
||||||
word-wrap: break-word;
|
word-break: break-word;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
label: i18n._('Groups'),
|
label: i18n._('Groups'),
|
||||||
key: true,
|
key: true,
|
||||||
uiSref: "inventories.edit.groups.edit({group_id:group.id})",
|
uiSref: "inventories.edit.groups.edit({group_id:group.id})",
|
||||||
columnClass: 'col-lg-6 col-md-6 col-sm-6 col-xs-6',
|
columnClass: 'col-lg-10 col-md-10 col-sm-10 col-xs-10',
|
||||||
class: 'InventoryManage-breakWord',
|
class: 'InventoryManage-breakWord',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
|
|
||||||
fieldActions: {
|
fieldActions: {
|
||||||
|
|
||||||
columnClass: 'col-lg-6 col-md-6 col-sm-6 col-xs-6 text-right',
|
columnClass: 'col-lg-2 col-md-2 col-sm-2 col-xs-2 text-right',
|
||||||
|
|
||||||
edit: {
|
edit: {
|
||||||
//label: 'Edit',
|
//label: 'Edit',
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ export default ['i18n', function(i18n) {
|
|||||||
label: i18n._('Hosts'),
|
label: i18n._('Hosts'),
|
||||||
uiSref: ".edit({inventory_id: host.inventory_id,host_id: host.id})",
|
uiSref: ".edit({inventory_id: host.inventory_id,host_id: host.id})",
|
||||||
ngClass: "{ 'host-disabled-label': !host.enabled }",
|
ngClass: "{ 'host-disabled-label': !host.enabled }",
|
||||||
columnClass: 'col-lg-3 col-md-4 col-sm-8 col-xs-7',
|
columnClass: 'col-lg-5 col-md-4 col-sm-8 col-xs-7',
|
||||||
dataHostId: "{{ host.id }}",
|
dataHostId: "{{ host.id }}",
|
||||||
dataType: "host",
|
dataType: "host",
|
||||||
class: 'InventoryManage-breakWord'
|
class: 'InventoryManage-breakWord'
|
||||||
@@ -80,7 +80,7 @@ export default ['i18n', function(i18n) {
|
|||||||
|
|
||||||
fieldActions: {
|
fieldActions: {
|
||||||
|
|
||||||
columnClass: 'col-sm-4 col-xs-5 text-right',
|
columnClass: 'col-lg-2 col-sm-4 col-xs-5 text-right',
|
||||||
edit: {
|
edit: {
|
||||||
ngClick: "editHost(host)",
|
ngClick: "editHost(host)",
|
||||||
icon: 'icon-edit',
|
icon: 'icon-edit',
|
||||||
|
|||||||
Reference in New Issue
Block a user