From 9b5bf374a66597b7df4cf8e8cb09e39e6d702be3 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 12 Sep 2014 08:12:16 -0700 Subject: [PATCH] Max width for tooltip is now 250px --- src/UI/Cells/cells.less | 4 ---- src/UI/Content/theme.less | 6 ++++++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/UI/Cells/cells.less b/src/UI/Cells/cells.less index 5d8ad94a2..62122c28d 100644 --- a/src/UI/Cells/cells.less +++ b/src/UI/Cells/cells.less @@ -47,10 +47,6 @@ .relative-date-cell, .relative-time-cell { .text-overflow(); cursor : default; - - .tooltip-inner { - max-width : 250px; - } } .relative-date-cell { diff --git a/src/UI/Content/theme.less b/src/UI/Content/theme.less index c4fa10eeb..11c0a865a 100644 --- a/src/UI/Content/theme.less +++ b/src/UI/Content/theme.less @@ -250,3 +250,9 @@ body { margin-bottom : 0px; } } + +.tooltip { + .tooltip-inner { + max-width : 250px; + } +}