ui-layout icon indicating copy to clipboard operation
ui-layout copied to clipboard

Ui-layout overlaps every other page element. Is not Bootstrap friendly

Open TeraTech opened this issue 9 years ago • 1 comments

If the webpage contains a header, a footer, a sidebar, or any other static section, the ui-layout will be positioned over all of those elements. This practically renders this plugin useless on Bootstrap pages. You cannot use this in conjunction with class="row", class="col-x-x", or any other container classes.

The only way to make it work is to force the content of this plugin to work within an iframe within the webpage. This hack should not be necessary.

TeraTech avatar Jul 24 '16 17:07 TeraTech

Actually you can make it play nicer by setting position:relative and setting min-height. Use in col-*-12 to catch width

<div class="row">
 <div class="col-md-12">
    <div  ui-layout="{flow:'column'}" style="position:relative;min-height:800px;min-width:800px;">

garyvidal avatar Nov 18 '16 14:11 garyvidal