Module: check_mk
Branch: master
Commit: a1b1d9e19f7d3042cd408899ffdfce1e9013119e
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=a1b1d9e19f7d30…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Thu Jul 18 17:33:55 2013 +0200
FIX: line wrapping of logwatch entries
---
ChangeLog | 1 +
web/htdocs/logwatch.css | 7 +++++++
2 files changed, 8 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index f1dc7cf..55475ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -95,6 +95,7 @@
* FIX: Inventory screen: Now shows custom checks
* FIX: Fixed locking problem of multisite pages related to user loading/saving
* FIX: Fixed wrong default settings of view filters in localized multisite
+ * FIX: line wrapping of logwatch entries
WATO:
* Allow to configure check-/retry_interval in second precision
diff --git a/web/htdocs/logwatch.css b/web/htdocs/logwatch.css
index 41f9ded..eeaaa61 100644
--- a/web/htdocs/logwatch.css
+++ b/web/htdocs/logwatch.css
@@ -176,4 +176,11 @@ Boston, MA 02110-1301 USA.
border-bottom-style: none;
}
+#logwatch p {
+ white-space: pre-wrap; /* CSS3 */
+ white-space: -moz-pre-wrap; /* Firefox */
+ white-space: -pre-wrap; /* Opera <7 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* IE */
+}