From 73885e01c253f058d66280ee849dce6a4a4a7d5b Mon Sep 17 00:00:00 2001 From: Jan Drewniak Date: Thu, 7 Feb 2019 19:37:02 -0500 Subject: [PATCH] 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 --- resources/skins.minerva.content.styles/templates/ambox.less | 2 +- .../ext.echo.styles.special/SpecialNotificationsOverlay.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/skins.minerva.content.styles/templates/ambox.less b/resources/skins.minerva.content.styles/templates/ambox.less index 0162541..4714ca6 100644 --- a/resources/skins.minerva.content.styles/templates/ambox.less +++ b/resources/skins.minerva.content.styles/templates/ambox.less @@ -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. */ diff --git a/skinStyles/ext.echo.styles.special/SpecialNotificationsOverlay.less b/skinStyles/ext.echo.styles.special/SpecialNotificationsOverlay.less index 349ee15..636440c 100644 --- a/skinStyles/ext.echo.styles.special/SpecialNotificationsOverlay.less +++ b/skinStyles/ext.echo.styles.special/SpecialNotificationsOverlay.less @@ -29,7 +29,7 @@ &-affixed { position: fixed; - z-index: 2; + z-index: @z-indexOverOverlay; top: 0; background-color: @skinContentBgColor; padding-top: 0.5em;