Project

General

Profile

Actions

Bug #90604

closed

backend.css has a wrong border-box reset

Added by Riccardo De Contardi over 4 years ago. Updated over 4 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2020-02-29
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
10
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

The file

typo3/sysext/backend/Resources/Public/Css/backend.css

contains:

* {
    box-sizing: border-box
}
:after,
:before {
    box-sizing: border-box
}

It seems wrong, and seems to affect the width and height calculation of the objects; it should be IMO

* , *::after, *::before {
    box-sizing: border-box
}

I don't know if it is an error that comes from sass compiling or a post-processor issue.

It affects 10.4.0-dev, 9.5.14 and even 8.7.31

Actions #1

Updated by Riccardo De Contardi over 4 years ago

  • Status changed from New to Closed

I close my issue as I understand that the "*" are removed with css minification and are valid so nothing to do here.

Actions

Also available in: Atom PDF