From dfcbfde2bb07a68e3bc15737f87534944a7c718b Mon Sep 17 00:00:00 2001 From: Paul Holden Date: Mon, 4 Nov 2024 17:26:13 +0000 Subject: [PATCH] MDL-83614 javascript: apply icon class to legacy lightbox spinner. --- lib/javascript-static.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/lib/javascript-static.js b/lib/javascript-static.js index c74d5a4a865..3008c1e552c 100644 --- a/lib/javascript-static.js +++ b/lib/javascript-static.js @@ -800,14 +800,10 @@ M.util.add_lightbox = function(Y, node) { } node.setStyle('position', 'relative'); + var waiticon = Y.Node.create('') - .setAttrs({ - 'src' : M.util.image_url(WAITICON.pix, WAITICON.component) - }) - .setStyles({ - 'position' : 'relative', - 'top' : '50%' - }); + .setAttribute('src', M.util.image_url(WAITICON.pix, WAITICON.component)) + .addClass('icon'); var lightbox = Y.Node.create('
') .setStyles({ @@ -817,6 +813,7 @@ M.util.add_lightbox = function(Y, node) { 'height' : '100%', 'top' : 0, 'left' : 0, + 'paddingTop': '50%', 'backgroundColor' : 'white', 'textAlign' : 'center' })