Actions
Bug #17837
closedNew backend.php has a wrong CSS integration order
Start date:
2007-11-23
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In the new backend.php, the stylesheets for the new layout below "css/*" are integrated after stylesheet_post.css which comes with t3skin (or any other ext-integrated css files), so there is no way to style the new backend:
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
[...]
<link rel="stylesheet" type="text/css" href="sysext/t3skin/stylesheets/stylesheet_post.css" />
[...]
<link rel="stylesheet" type="text/css" href="css/backend-scaffolding.css" />
<link rel="stylesheet" type="text/css" href="css/backend-style.css" />
<link rel="stylesheet" type="text/css" href="css/verticalmenu.css" />
Just re-order it to be integrated directly after stylesheet.css and before any extension css.
(issue imported from #M6814)
Actions