From 1ef1f7a264e39cb112188a86326b1e96e9874906 Mon Sep 17 00:00:00 2001 From: Moritz Strohm <strohm@data-quest.de> Date: Thu, 15 Feb 2024 14:48:53 +0000 Subject: [PATCH] fullcalendar: changed loading indicator size to 32x32 px, fixes #3626 Closes #3626 Merge request studip/studip!2618 --- resources/assets/javascripts/lib/fullcalendar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/assets/javascripts/lib/fullcalendar.js b/resources/assets/javascripts/lib/fullcalendar.js index b5bd78d49a7..ec59de6342b 100644 --- a/resources/assets/javascripts/lib/fullcalendar.js +++ b/resources/assets/javascripts/lib/fullcalendar.js @@ -604,8 +604,8 @@ class Fullcalendar $('<div id="loading-spinner" style="position: absolute; top: calc(50% - 55px); left: calc(50% + 135px); z-index: 9001;">').html( $('<img>').attr('src', STUDIP.ASSETS_URL + 'images/loading-indicator.svg') .css({ - width: 64, - height: 64 + width: 32, + height: 32 }) ) ); -- GitLab