Project

General

Profile

Actions

Bug #93995

closed

Background-color is not always visible for extensions marked as insecure

Added by Wittkiel Gruppe almost 3 years ago. Updated almost 3 years ago.

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

css-insecure-selector.png (48.5 KB) css-insecure-selector.png Wittkiel Gruppe, 2021-04-27 13:17
Actions #1

Updated by Christian Kuhn almost 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 ...

Actions #2

Updated by Martin Kutschker almost 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;
}

Actions #3

Updated by Martin Kutschker almost 3 years ago

The fix is necessary for v10 but not for v11 (master)

Actions #4

Updated by Gerrit Code Review almost 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

Actions #5

Updated by Oliver Bartsch almost 3 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #6

Updated by Benni Mack almost 3 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF