From ffef07eef9943a795169c6e0cad7280a99099d96 Mon Sep 17 00:00:00 2001 From: Jachym Cepicky Date: Thu, 7 Mar 2019 11:23:37 +0100 Subject: [PATCH] Resize too big images Some too big images, if they are animated GIF's and overflow the page size, are not animated any more. We use animated GIFs for the demonstration how to do things in the knowledge base. This fix makes the GIFs move, even if they are big. --- helpdesk/static/helpdesk/helpdesk-extend.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helpdesk/static/helpdesk/helpdesk-extend.css b/helpdesk/static/helpdesk/helpdesk-extend.css index 4d280241..fc464507 100644 --- a/helpdesk/static/helpdesk/helpdesk-extend.css +++ b/helpdesk/static/helpdesk/helpdesk-extend.css @@ -76,3 +76,7 @@ Add your custom styles here } #helpdesk-body {padding-top: 100px;} img.brand {padding-right: 30px;} + +div.card-body img { + max-width: 900px; +}