From a323e2fb3ce01f1f2f8bdf7612bf4a2a667d2b0c Mon Sep 17 00:00:00 2001 From: Adam Prescott Date: Tue, 15 Apr 2014 18:33:42 -0400 Subject: [PATCH] Forcibly break cell content for columns that get too wide. --- web/assets/stylesheets/application.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/web/assets/stylesheets/application.css b/web/assets/stylesheets/application.css index 0e6b2a1b..1e2100d0 100755 --- a/web/assets/stylesheets/application.css +++ b/web/assets/stylesheets/application.css @@ -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%;