Actions
Bug #93995
closedBackground-color is not always visible for extensions marked as insecure
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Extension Manager
Target version:
-
Start date:
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The css-selector for extensions marked as insecure in extension manager is too weak, first entry for dce version 2.6.0 (insecure) should be red.
Files
Updated by Christian Kuhn over 3 years ago
Good catch!
Reproducible in v10 on every second row when adding class="insecure" to them. Seems the even/odd handling takes CSS precedence ...
Updated by Martin Kutschker over 3 years ago
Needs to be fixed in _extensionmanager.scss:
Solution A:
.extension-list { &.table-striped .insecure { background-color: #ffd9d9; } }
Solution B:
#typo3-extension-list .insecure { background-color: #ffd9d9; }
Updated by Martin Kutschker over 3 years ago
The fix is necessary for v10 but not for v11 (master)
Updated by Gerrit Code Review over 3 years ago
- Status changed from New to Under Review
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/69102
Updated by Oliver Bartsch over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 56f9da97f9535645794bb06bf0dec3bb65bba9b7.
Actions