Bug #15707 » navFrame.patch
typo3_src-4.0.2/typo3/alt_db_navframe.php 2006-12-13 17:15:37.000000000 +0100 | ||
---|---|---|
$this->initializeTemporaryDBmount();
|
||
// Setting highlight mode:
|
||
$this->doHighlight = !$BE_USER->getTSConfigVal('options.pageTree.disableTitleHighlight') && $BE_USER->workspace===0;
|
||
// $this->doHighlight = !$BE_USER->getTSConfigVal('options.pageTree.disableTitleHighlight') && $BE_USER->workspace===0;
|
||
$this->doHighlight = !$BE_USER->getTSConfigVal('options.pageTree.disableTitleHighlight');
|
||
// Create template object:
|
||
$this->doc = t3lib_div::makeInstance('template');
|
||
... | ... | |
// Remove old:
|
||
theObj = document.getElementById(top.fsMod.navFrameHighlightedID[frameSetModule]);
|
||
if (theObj) {
|
||
theObj.className = "";
|
||
/* theObj.className = ""; */
|
||
theObj.className=theObj.className.replace("navFrameHL", "");
|
||
}
|
||
// Set new:
|
||
top.fsMod.navFrameHighlightedID[frameSetModule] = highLightID;
|
||
theObj = document.getElementById(highLightID);
|
||
if (theObj) {
|
||
theObj.className = "navFrameHL";
|
||
/* theObj.className = "navFrameHL"; */
|
||
theObj.className = theObj.className + " navFrameHL'.($BE_USER->workspace===0 ? '' : '-WS').'";
|
||
}
|
||
}
|
||
-- typo3_src-4.0.1/typo3/stylesheet.css 2006-07-31 13:51:50.000000000 +0200
|
||
++ typo3_src-4.0.2/typo3/stylesheet.css 2006-12-13 17:24:10.000000000 +0100
|
||
... | ... | |
TABLE#typo3-tree { margin-bottom: 10px; width: 95%; }
|
||
P.c-refresh IMG { vertical-align: middle; margin-right: 7px; }
|
||
BODY#typo3-alt-db-navframe-php DIV.c-notice { border: 1px solid black; padding: 5px 5px 5px 5px; margin-top: 5px; margin-bottom: 10px; width: 95%; }
|
||
.navFrameHL { background-color: #ebebeb; }
|
||
/* .navFrameHL { background-color: #ebebeb; } */
|
||
.navFrameHL, .navFrameHL-WS { border-top: 1px solid #333366; border-bottom: 1px solid #333366; font-weight: bold; }
|
||
/* TCEforms */
|
||
TABLE.typo3-TCEforms SPAN.typo3-TCEforms-recHeader { font-weight: bold; color: #333366; }
|