mirror of
https://github.com/ansible/awx.git
synced 2026-03-27 05:45:02 -02:30
Merge pull request #3102 from jlmitch5/fixWrapping
fix wrapping of name columns
This commit is contained in:
@@ -80,12 +80,6 @@ a.red-txt:active {
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.name-column {
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ table, tbody {
|
|||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
border-top:0px!important;
|
border-top:0px!important;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.List-tableCell.description-column {
|
.List-tableCell.description-column {
|
||||||
|
|||||||
@@ -101,10 +101,8 @@
|
|||||||
|
|
||||||
.DashboardList-nameCell {
|
.DashboardList-nameCell {
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
text-overflow: ellipsis;
|
|
||||||
overflow:hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.DashboardList-nameContainer {
|
.DashboardList-nameContainer {
|
||||||
|
|||||||
@@ -48,9 +48,6 @@ export default
|
|||||||
columnClass: 'col-lg-2 col-md-3 col-sm-4 col-xs-6',
|
columnClass: 'col-lg-2 col-md-3 col-sm-4 col-xs-6',
|
||||||
ngClick: "viewJobDetails(all_job)",
|
ngClick: "viewJobDetails(all_job)",
|
||||||
defaultSearchField: true,
|
defaultSearchField: true,
|
||||||
awToolTip: "{{ all_job.name | sanitize }}",
|
|
||||||
dataTipWatch: 'all_job.name',
|
|
||||||
dataPlacement: 'top'
|
|
||||||
},
|
},
|
||||||
type: {
|
type: {
|
||||||
label: 'Type',
|
label: 'Type',
|
||||||
|
|||||||
Reference in New Issue
Block a user