Change z-index of page-issues read-more link

Changes z-index from 1 to 0 on page-issues link to avoid showing
white background when navigation menu slides over.

Also changing z-index value on SpecialNotificationsOverlay.less
from the hard-coded value of 2 to @z-indexOverOverlay
(which is set to 2).

Bug: T214550
Change-Id: If033755115f2a266869fb87c4314798c422d88ed
This commit is contained in:
Jan Drewniak 2019-02-07 19:37:02 -05:00
parent 63e52a302a
commit 73885e01c2
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ table.ambox {
position: absolute;
right: @amboxPadding;
bottom: @amboxPadding;
z-index: 1;
z-index: @z-indexBase;
line-height: @contentLineHeight; // sets height for fade & aligns "learn more" to ambox text.
/* creates a fade under the "learn more" button to avoid overlapping text. */

View File

@ -29,7 +29,7 @@
&-affixed {
position: fixed;
z-index: 2;
z-index: @z-indexOverOverlay;
top: 0;
background-color: @skinContentBgColor;
padding-top: 0.5em;