Index: typo3/sysext/t3skin/stylesheets/visual/module_web_page.css =================================================================== --- typo3/sysext/t3skin/stylesheets/visual/module_web_page.css (Revision 9938) +++ typo3/sysext/t3skin/stylesheets/visual/module_web_page.css (Arbeitskopie) @@ -91,13 +91,15 @@ background-color: #e5e5e5; } -td.t3-gridCell-restricted div.t3-row-header, td.t3-gridCell-unassigned div.t3-row-header { +td.t3-gridCell-restricted div.t3-row-header, +td.t3-gridCell-unassigned div.t3-row-header { -moz-opacity: 0.4; opacity: .40; filter: alpha(opacity = 40); } -td.t3-gridCell-restricted div.t3-row-header div, td.t3-gridCell-unassigned div.t3-row-header div { +td.t3-gridCell-restricted div.t3-row-header div, +td.t3-gridCell-unassigned div.t3-row-header div { -moz-opacity: 0.6; opacity: .60; filter: alpha(opacity = 60); Index: typo3/sysext/cms/layout/class.tx_cms_layout.php =================================================================== --- typo3/sysext/cms/layout/class.tx_cms_layout.php (Revision 9938) +++ typo3/sysext/cms/layout/class.tx_cms_layout.php (Arbeitskopie) @@ -539,13 +539,8 @@ $backendLayoutUid = $this->getSelectedBackendLayoutUid($id); $backendLayoutRecord = t3lib_BEfunc::getRecord('be_layouts', intval($backendLayoutUid)); - if (empty($backendLayoutRecord['config'])) { - $this->tt_contentConfig['showAsGrid'] = FALSE; - } else { - $this->tt_contentConfig['showAsGrid'] = TRUE; + $this->tt_contentConfig['showAsGrid'] = !empty($backendLayoutRecord['config']); - } - if (!$this->tt_contentConfig['showAsGrid']) { foreach ($cList as $k => $key) { @@ -620,8 +615,8 @@ (isset($columnConfig['colspan']) ? ' colspan="' . $columnConfig['colspan'] . '"' : '') . (isset($columnConfig['rowspan']) ? ' rowspan="' . $columnConfig['rowspan'] . '"' : '') . ' class="t3-gridCell t3-page-column t3-page-column-' . $columnKey . - (!isset($columnConfig['colPos']) ? ' t3-gridCell-unassigned' : '') . - ((isset($columnConfig['colPos']) && ! $head[$columnKey]) ? ' t3-gridCell-restricted' : '') . + (!isset($columnConfig['colPos']) ? ' t3-gridCell-unassigned' : '') . + ((isset($columnConfig['colPos']) && ! $head[$columnKey]) ? ' t3-gridCell-restricted' : '') . (isset($columnConfig['colspan']) ? ' t3-gridCell-width' . $columnConfig['colspan'] : '') . (isset($columnConfig['rowspan']) ? ' t3-gridCell-height' . $columnConfig['rowspan'] : '') . '">'; Index: typo3/sysext/cms/layout/locallang.xml =================================================================== --- typo3/sysext/cms/layout/locallang.xml (Revision 9938) +++ typo3/sysext/cms/layout/locallang.xml (Arbeitskopie) @@ -88,4 +88,4 @@ - + \ No newline at end of file