Skip to content

Commit

Permalink
website - font weight option added and label fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
spilymp committed Jun 30, 2022
1 parent 794130c commit 49a55e3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
'font_color': document.getElementById('iconFontColor').value,
'font_family': document.getElementById('iconSet').value,
'font_size': document.getElementById('iconFontSizeValue').value,
'font_weight': document.getElementById('fontWeight').value,
'icon_background': document.getElementById('iconBackgroundColor').value,
'icon_class': document.getElementById('iconClass').value,
'icon_width': document.getElementById('iconSizeValue').value,
Expand Down Expand Up @@ -238,7 +239,7 @@ <h1>IBO - Icon Builder for Odoo</h1>
<div class="row">

<div class="column column-center">
<label for="iconSize">Icon Font Size</label>
<label for="iconSize">Icon Size</label>
</div>
<div class="column">
<div class="row" id="iconSize">
Expand Down Expand Up @@ -269,10 +270,15 @@ <h1>IBO - Icon Builder for Odoo</h1>
</div>
</div>

<!-- placeholder -->
<div class="row">
<div class="column column-center">
<label for="fontWeight">Icon Font Weight</label>
</div>
<div class="column">
<input type="text" class="visibility-hidden">
<select id="fontWeight">
<option value="900" selected>Normal</option>
<option value="300">Light</option>
</select>
</div>
</div>

Expand Down

0 comments on commit 49a55e3

Please sign in to comment.