--- /usr/share/zabbix/styles/default.css.orig 2013-08-13 19:21:48.000000000 +0200 +++ /usr/share/zabbix/styles/default.css 2013-10-13 18:49:06.000000000 +0200 @@ -438,6 +438,7 @@ /* table info */ table.tableinfo { empty-cells:show; width: 100%; border-spacing: 2px; } table.tableinfo tr td { padding: 1px 3px; white-space: nowrap; font-weight: normal; text-align: left; border: 0; height: 22px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; } +table.tableinfo #trigger-details-expression td { white-space: normal; } table.tableinfo tr.header td { white-space: nowrap; font-weight: bold; border: 0; } table.tableinfo tr.header td.hover_grey { white-space: nowrap; word-spacing: 0; font-weight: bold; border-width: 0; cursor: pointer; } table.tableinfo tr.vertical_header td { padding: 5px 0 5px 5px; margin: 0; white-space: nowrap; word-spacing: 0; font-weight: bold; width: 20px; text-align: center; } --- /usr/share/zabbix/include/triggers.inc.php.orig 2013-10-13 18:23:38.000000000 +0200 +++ /usr/share/zabbix/include/triggers.inc.php 2013-10-13 18:47:29.000000000 +0200 @@ -1603,7 +1603,7 @@ $table->addRow(array(_('Host'), $hostSpan)); $table->addRow(array(_('Trigger'), CTriggerHelper::expandDescription($trigger))); $table->addRow(array(_('Severity'), getSeverityCell($trigger['priority']))); - $table->addRow(array(_('Expression'), $expression)); + $table->addRow(array(_('Expression'), $expression), null, 'trigger-details-expression'); $table->addRow(array(_('Event generation'), _('Normal').(TRIGGER_MULT_EVENT_ENABLED == $trigger['type'] ? SPACE.'+'.SPACE._('Multiple PROBLEM events') : ''))); $table->addRow(array(_('Disabled'), (TRIGGER_STATUS_ENABLED == $trigger['status'] ? new CCol(_('No'), 'off') : new CCol(_('Yes'), 'on'))));