@actran
Your first request is complicated. The preset controls are complex little beasts, making it difficult to add an alternative layout for them. And if this were to be done, it would make those controls all the more complex and difficult to maintain.
Your second request is simple enough. If you haven't got one already, create a ui3-local-overrides.js file as described in the help file here: UI3 Help
Paste into it this script:
Your first request is complicated. The preset controls are complex little beasts, making it difficult to add an alternative layout for them. And if this were to be done, it would make those controls all the more complex and difficult to maintain.
Your second request is simple enough. If you haven't got one already, create a ui3-local-overrides.js file as described in the help file here: UI3 Help
Paste into it this script:
Code:
// Move the "Current Group" controls in the live view tab to the top of the scrollable section.
$(function ()
{
var $liveScrollable = $('#layoutleftLiveScrollable');
var $currentGroup = $liveScrollable.find('div[name="currentGroup"]').parent();
$liveScrollable.children(".leftBarTopPadding").first().after($currentGroup);
});