#932632 by mikeytown2: Fix notice in .install file.
#927840: Add clear-block to dashboard HTML to ensure themes do not do weird things to it.
#941806: Fix incorrect link to configure mini panel on block config page.
+#869766: Fix occasional problem with flexible layout pushing the entire layout to the left in certain fixed-width only configurations.
Panels 6.x-3.7 (2010-Jul-26)
==============
// If there is any total remaining, we need to offset the splitter
// by this much too.
if ($left_total) {
+ // Add this even if it's 0 so we can handle removals.
+ $css["$owner_id-inside"]['padding-left'] = '0px';
if ($renderer->admin || count($middle)) {
$css["$owner_id-middle"]['margin-left'] = $left_total . 'px';
// IE hack
$css["* html $owner_id-left"]['left'] = $left_total . "px";
+ // Make this one very specific to the admin CSS so that preview
+ // does not stomp it.
+ $css[".panel-flexible-admin $owner_id-inside"]['padding-left'] = '0px';
}
else {
$css["$owner_id-inside"]['margin-left'] = '-' . $left_total . 'px';
+ $css["$owner_id-inside"]['padding-left'] = $left_total . 'px';
// IE hack
$css["* html $owner_id-inside"]['left'] = $left_total . "px";
}
}
- // Add this even if it's 0 so we can handle removals.
- $css["$owner_id-inside"]['padding-left'] = '0px';
if ($right_total) {
$css["$owner_id-middle"]['margin-right'] = $right_total . 'px';
}