From 783006daa614cf86dd807b767c5c8afc89e67005 Mon Sep 17 00:00:00 2001 From: Jackie Luo Date: Tue, 15 Nov 2016 12:10:35 -0800 Subject: [PATCH] :art:(calendar): Fix overflow for event names --- static/components/nylas-calendar.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/components/nylas-calendar.less b/static/components/nylas-calendar.less index 1ed515896..b02d30da5 100644 --- a/static/components/nylas-calendar.less +++ b/static/components/nylas-calendar.less @@ -74,7 +74,6 @@ body.platform-win32 { .calendar-event { @interval-height: 21px; position: absolute; - padding: 4px 5px 5px 6px; font-size: 11px; line-height: 11px; font-weight: 500; @@ -89,6 +88,9 @@ body.platform-win32 { display: flex; cursor: default; .default-header { + overflow: hidden; + text-overflow: ellipsis; + margin: 4px 5px 5px 6px; cursor: default; opacity: 0.7; flex: 1;