Set column width on Row Actions Icon column?

Is there a way to set the width of the column with the Row Action icons?



I would like to set the width so they wrap onto multiple lines since my data already makes the rows taller than one line of text.

This column does not seem to have an id or class so I’m not sure how to set it’s width.

Thanks!

Any ideas on this one? Anyone?

Give your table a class. After that add the following css:

&#46;your-table-class tr td:nth-child(2){<br /> width:60px;<br />}<br /><br />&#46;your-table-class tr td:nth-child(2) &gt; div{<br /> white-space:normal !important;<br />}

If you remove all your mass actions it would be td:first-child instead of td:nth-child(2)

Hope that helps