Actions
Bug #80114
closedHighlighting of insecure & outdated extension missing
Status:
Closed
Priority:
Should have
Assignee:
Category:
Backend User Interface
Target version:
-
Start date:
2017-03-03
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Insecure & outdated extensions are not being highlighted in extension manager because of wrong CSS class selectors. I managed to fix it this way:
Replace:
.typo3-extension-manager .insecure {
color: #ff2262;
}
.typo3-extension-manager .outdated {
color: #0c08ff;
}
With:
.typo3-extension-list .insecure {
color: #ff2262;
}
.typo3-extension-list .outdated {
color: #0c08ff;
}
in file: typo3/sysext/t3skin/Resources/Public/Css/backend.css
Actions