diff --git a/templates/tracker.mustache b/templates/tracker.mustache index 05686b6..f6e1726 100644 --- a/templates/tracker.mustache +++ b/templates/tracker.mustache @@ -202,7 +202,7 @@ .catch(function(error) { console.error("Error:", error); }); - modal.setAttribute("style","display: flex; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4); justify-content: center; align-items: center;"); + modal.setAttribute("style","display: flex; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4); justify-content: center; align-items: center;"); } }); } node.appendChild(textnode); parentNode = document.createElement("TD"); @@ -232,7 +232,7 @@ var close = document.createElement('div'); close.setAttribute("style","width: 100%;"); - close.setAttribute("style","position: absolute; right: 35px;font-size: 28px;font-weight: bold;cursor: pointer;"); + close.setAttribute("style","position: absolute; left: 15px; top: 4px; font-size: 28px;font-weight: bold;cursor: pointer;"); close.innerHTML ='×'; close.addEventListener("click", ()=>{ modal.setAttribute("style","display: none"); diff --git a/version.php b/version.php index 8b288e2..a319730 100644 --- a/version.php +++ b/version.php @@ -28,9 +28,9 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2024060408; +$plugin->version = 2024070901; $plugin->requires = 2020061500; -$plugin->release = '3.3.2 (Build: 2024060408)'; +$plugin->release = '3.3.3 (Build: 2024070901)'; $plugin->maturity = MATURITY_STABLE; $plugin->component = 'local_proview';