From 105104152c487ec546c29ebe1cb9c7413b04851e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 25 Aug 2017 14:17:01 +0200 Subject: [PATCH] Make sure buttons stay in place even if the messages are really long --- css/styles.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/css/styles.css b/css/styles.css index 235ee1f1..bb0c1700 100644 --- a/css/styles.css +++ b/css/styles.css @@ -121,17 +121,29 @@ margin-right: 14px; } +.notification .notification-content { + overflow: hidden; +} + .notification .notification-title { color: #000; font-size: 12.8px; line-height: 20.48px; font-weight: 600; margin: 5px 0 10px; + width: 270px; + /*white-space: nowrap;*/ + overflow: hidden; + text-overflow: ellipsis; } .notification .notification-message { line-height: 20px; padding-bottom: 5px; + width: 270px; + /*white-space: nowrap;*/ + overflow: hidden; + text-overflow: ellipsis; } .notification-container {