Skip to content
Snippets Groups Projects
Commit f497feb5 authored by Nikita Hovratov's avatar Nikita Hovratov Committed by Benni Mack
Browse files

[BUGFIX] Add missing borders below tablesort th elements

While fixing an issue with sticky icons, the borders
below th elements with "position: relative" got
removed. This is fixed by adding the css property
"background-clip: padding-box" to them, as this
prevents the drawing of background beneath
borders.

Resolves: #95605
Related: #95455
Releases: master
Change-Id: Ic1773aae97f466a894fb80c7e3bff35233f76a5c
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/71596


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 835ec9e0
Branches
Tags
No related merge requests found
......@@ -2,6 +2,7 @@
th[role=columnheader]:not([data-sort-method="none"]) {
cursor: pointer;
position: relative;
background-clip: padding-box;
&:after {
content: '';
......
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment