diff --git a/app/views/domains/_bulk_panel.html.erb b/app/views/domains/_bulk_panel.html.erb index cfd7b35..999bb52 100644 --- a/app/views/domains/_bulk_panel.html.erb +++ b/app/views/domains/_bulk_panel.html.erb @@ -1,18 +1,32 @@ <div id="bulk-panel" class="panel panel-primary hidden"> <div class="panel-heading"> Bulk Mode </div> <div class="panel-body"> <p> <span class="added">0</span> records added<abbr title="Highlight records that failed to be added" class="failed failed-added"></abbr>, <abbr class="js-modified-hover" title="Highlight modified records"> <span class="changed">0</span> records modified </abbr><abbr title="Highlight records that failed to update." class="failed failed-changed"></abbr>, <span class="deleted">0</span> records deleted<abbr title="Highlight records that failed to delete" class="failed failed-deleted"></abbr>. </p> <div> <a href="." class="btn btn-default">Cancel (Refresh)</a> <button type="button" class="btn btn-success" id="js-bulky-commit">Commit</button> </div> </div> </div> +<style> + .affix { + top: 55px; + z-index: 100; + } +</style> +<script> + $('#bulk-panel').affix({ + offset: { + top: 50 + } + }); +</script> +