Duplicate Bug in add a resource

It has to do with {xen:calc '@formWidth - @ctrlUnitLabelWidth - @ctrlUnitEdgeSpacer - 105'}

When checking, formWidth went from 750 in xF 1.1 to 800 in xF 1.2.
The other variables probably changed too, that's what causing this.. Probably Redactor-related or something :)
 
It has to do with {xen:calc '@formWidth - @ctrlUnitLabelWidth - @ctrlUnitEdgeSpacer - 105'}

When checking, formWidth went from 750 in xF 1.1 to 800 in xF 1.2.
The other variables probably changed too, that's what causing this.. Probably Redactor-related or something :)

I'm suprised they haven't fixed it after all this time.
 
The RM has not yet been updated to work with the responsive design.

This has been reported multiple times.
 
I have a temp fix for you to use.

Open resource_editor.css
Find (Should be at the very top):
Code:
#ctrl_title.withVersion
{
   width: {xen:calc '@formWidth - @ctrlUnitLabelWidth - @ctrlUnitEdgeSpacer - 105'}px;
   box-sizing: border-box;
}

Change entire area to:
Code:
#ctrl_title.withVersion
{
   width: {xen:calc '@formWidth - @ctrlUnitLabelWidth - @ctrlUnitEdgeSpacer - 330'}px;
   box-sizing: border-box;
}

Notice the {xen:calc right before '} you will see that number is increased. That will cause the title input box to shrink and allow the version string to move to the same line.
 
Top Bottom