From 195d14ee655b2eac3e4cb6480079f5853a826ffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 26 May 2020 10:14:48 +0200 Subject: [PATCH] style: limit width allowed for platform name (#43304) --- gadjo/static/css/gadjo.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index 2266219..c4c3962 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -172,6 +172,11 @@ ul.user-info { a { border: none; color: $font-color; + display: block; + max-width: 20em; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; } } @media screen and (max-width: $mobile-limit) {