1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Forcibly break cell content for columns that get too wide.

This commit is contained in:
Adam Prescott 2014-04-15 18:33:42 -04:00
parent b639f3711c
commit a323e2fb3c

View file

@ -197,6 +197,18 @@ td form {
padding: 0px;
}
.table td {
/* Non standard for webkit */
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
-ms-word-break: break-all;
word-break: break-all;
}
table .table-checkbox label {
height: 100%;
width: 100%;