From 9f1bedda1c7fb191c402c83508f1085cb72c7290 Mon Sep 17 00:00:00 2001 From: Moriel Schottlender Date: Wed, 7 Oct 2015 16:06:39 -0700 Subject: [PATCH] Override footer buttons hover color in Modern In Modern, the hover color for links in the #p-personal bar is white, which is unhelpful for the buttons in the popup. Override that style for hover. Bug: T114080 Change-Id: I8b739f2a46c3eb3ce9f61e92b5025751047a451d --- .../styles/mw.echo.ui.NotificationBadgeWidget.modern.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/ooui/styles/mw.echo.ui.NotificationBadgeWidget.modern.less b/modules/ooui/styles/mw.echo.ui.NotificationBadgeWidget.modern.less index 4c0363d72..4749f7cdc 100644 --- a/modules/ooui/styles/mw.echo.ui.NotificationBadgeWidget.modern.less +++ b/modules/ooui/styles/mw.echo.ui.NotificationBadgeWidget.modern.less @@ -10,4 +10,9 @@ body #p-personal { > .oo-ui-buttonElement-button { border-radius: none; } + // Popup buttons + .oo-ui-buttonElement-button:hover { + // In modern, the hover color is white, which is unhelpful. + color: #666666; + } }