1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 06:51:10 +03:00

Portal mode column styling

Added text wrap and fixed layout style for portal mode widgets for long names
This commit is contained in:
Jared Tabor 2014-12-05 11:00:56 -05:00
parent 688e80d82c
commit 224e136269

View File

@ -37,3 +37,13 @@
}
}
#job_templates_table,
#portal_jobs_table {
table-layout:fixed;
}
#portal_jobs_table .name-column,
#job_templates_table .name-column {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}