Hello,
On the component I'm making, I was able to add Classes to create a better user interface. It was easy to me, because I already know the classes to be added. I was wondering, if it is possible to add those options on the property box of the bricks... for instance...
Lets pretend I have 3 Bricks One is Fly, so it will display some info about the item and I want it positioned on the right side 40%, so I used the classes "width-40 fltrt".
Than I have another brick called Parameters and I also want it positioned on the right side 40% again "width-40 fltrt".
At the end I have my main brick, that will hold the editing of my item and it bill be positioned on the left side 60% and the classes would be "width-60 fltlft".
So.. the final result would be
<div class="width-60 fltlft">
<fieldset class="fieldsform">
<legend>Main Brick</legend>
{BRICK MAIN}
</fieldset>
</div>
<div class="width-40 fltrt">
<fieldset class="fieldsform">
<legend>Info Brick</legend>
{BRICK INFO}
</fieldset>
<fieldset class="fieldsform">
<legend>Params Brick</legend>
{BRICK PARAMs}
</fieldset>
</div>
If I made myself clear, I'm suggesting to add the option to choose the side and size in % of the brick