[Legacy] Studio Export Customization Styling Fixes

This commit is contained in:
balumahendran 2022-11-10 10:40:06 +05:30 committed by Clemente Raposo
parent efca0580e8
commit 352260e901
2 changed files with 36 additions and 16 deletions

View file

@ -82,23 +82,28 @@
</tr>
</tbody>
</table>
<table border="0" CELLSPACING="15" WIDTH="100%">
<TR><input type="hidden" name="hiddenCount"></TR>
<div class="export-customization">
<div>
<input type="hidden" name="hiddenCount">
</div>
{foreach from=$modules key=k item=i}
<TR>
<TD><h3 style='margin-bottom:20px;'>{if $i != ""}<INPUT onchange="updateCount(this);" type="checkbox" name="modules[]" value={$k}>{/if}{$moduleList[$k]}</h3></TD>
<TD VALIGN="top">
{foreach from=$i item=j}
{$j}<br>
{/foreach}
</TD>
</TR>
{/foreach}
</table>
<br>
<div class="export-field">
<div class="export-label">
<span style="margin-right: 0.5em;">{$moduleList[$k]}</span>
</div>
<div>
{if $i != ""}
<INPUT onchange="updateCount(this);" type="checkbox" name="modules[]" value={$k}>
{/if}
</div>
<div>
{foreach from=$i item=j}
{$j}<br>
{/foreach}
</div>
</div>
{/foreach}
</div>
</form>

{literal}

View file

@ -33,4 +33,19 @@
background: $pale-blue;
}
}
input[type=submit].button:hover {
background: $pale-blue;
}
.export-customization {
.export-field {
display: flex;
line-height: 30px;
padding: 0;
.export-label {
width: 10em;
padding: 0;
font-weight: bold;
}
}
}
}