mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-24 06:13:54 +00:00
[LESS] [content] lower content render order
Create a new stacking context for page content. Previously, it was possible for on page content to defeat the skin's z-index values with superior numbers. This occurred with StructuredDiscussion OOUI widgets on https://test.m.wikipedia.org/wiki/Talk:Main_Page and the `position: sticky` header on Special:Notifications. `scaleY(1)` is an identity transform that is terse and unlikely to be confused when RTL flipping. Bug: T225959 Change-Id: If8f718a707d9dd07e1182bc26e63e6e665bf98c2
This commit is contained in:
parent
c85f48cdd1
commit
b96ab7bd40
|
@ -44,5 +44,10 @@
|
|||
width: 100%;
|
||||
position: relative;
|
||||
background-color: @chromeColor;
|
||||
}
|
||||
|
||||
.content {
|
||||
// Create a new stacking context.
|
||||
transform: scaleY( 1 );
|
||||
z-index: @z-indexBase;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue