Add a LESS z-index variable for elements that sit above page content

`@z-indexAboveContent` is a variable that places element above the
page content, but below the drawers. Initially added for the
fixed/sticky position button on the action=history page.

Bug: T219895
Change-Id: Ib773dd976221a60a0ea666c1a9a1104a0ba17613
This commit is contained in:
Jan Drewniak 2019-05-14 12:17:45 +02:00
parent 863f1a7265
commit 20013d1e3d
1 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,5 @@
@import 'mediawiki.ui/variables';
@z-indexBase: 0;
@z-indexOverOverlay: 3;
/**
* System font stack for sans-serif fonts
*
@ -127,8 +124,11 @@
// z-index:
@z-indexOccluded: -1;
@z-indexDrawer: 1;
@z-indexOverlay: 2;
@z-indexBase: 0;
@z-indexAboveContent: 1;
@z-indexDrawer: 2;
@z-indexOverlay: 3;
@z-indexOverOverlay: 4;
// Print specific
@colorPrintSubtle: #999;