Merge pull request #5908 from christianbeeznest/ofaj-22145-4

Internal: Fix button positioning below image in hotspot exercise - refs BT#22145
pull/5909/head
christianbeeznest 3 weeks ago committed by GitHub
commit 369741eee8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      public/main/inc/lib/exercise.lib.php

@ -1431,7 +1431,7 @@ HTML;
$hotspotColor = 0; $hotspotColor = 0;
if (HOT_SPOT_DELINEATION != $answerType) { if (HOT_SPOT_DELINEATION != $answerType) {
$answerList = ' $answerList = '
<div class="bg-tertiary p-4 rounded-md border border-gray-25"> <div class="p-4 rounded-md border border-gray-25">
<h5 class="font-bold text-lg mb-2 text-primary">'.get_lang('Image zones').'</h5> <h5 class="font-bold text-lg mb-2 text-primary">'.get_lang('Image zones').'</h5>
<ol class="list-decimal ml-6 space-y-2 text-primary"> <ol class="list-decimal ml-6 space-y-2 text-primary">
'; ';
@ -1459,7 +1459,7 @@ HTML;
echo " echo "
<div class=\"flex space-x-4\"> <div class=\"flex space-x-4\">
<div class=\"w-3/4\"> <div class=\"w-3/4\">
<div id=\"hotspot-preview-$questionId\" class=\"bg-gray-10 h-[500px] w-full bg-center bg-no-repeat bg-contain border border-gray-25\"></div> <div id=\"hotspot-preview-$questionId\" class=\"bg-gray-10 w-full bg-center bg-no-repeat bg-contain border border-gray-25\"></div>
</div> </div>
<div class=\"w-1/4\"> <div class=\"w-1/4\">
$answerList $answerList
@ -1498,7 +1498,7 @@ HOTSPOT;
$relPath = api_get_path(WEB_CODE_PATH); $relPath = api_get_path(WEB_CODE_PATH);
$s .= "<div class=\"w-3/4\"> $s .= "<div class=\"w-3/4\">
<div class=\"hotspot-image h-[500px] bg-gray-10 border border-gray-25 bg-center bg-no-repeat bg-contain\"></div> <div class=\"hotspot-image bg-gray-10 border border-gray-25 bg-center bg-no-repeat bg-contain\"></div>
<script> <script>
$(function() { $(function() {
new ".(HOT_SPOT_DELINEATION == $answerType ? 'DelineationQuestion' : 'HotspotQuestion')."({ new ".(HOT_SPOT_DELINEATION == $answerType ? 'DelineationQuestion' : 'HotspotQuestion')."({

Loading…
Cancel
Save