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:
parent
b639f3711c
commit
a323e2fb3c
1 changed files with 12 additions and 0 deletions
|
@ -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%;
|
||||
|
|
Loading…
Add table
Reference in a new issue