From bae4bdcc3176b9f28646cfc63b45e294f43c53d9 Mon Sep 17 00:00:00 2001 From: jo12bar Date: Mon, 26 Dec 2016 10:48:49 -0800 Subject: [PATCH] mediawiki.ui: Explicitly define input text color This fixes an issue where certain system themes (i.e. custom Gnome themes) would set a default & often unreadable text color for any .mw-ui-input's. The text color is now explicity set to `@colorGray1`, fixing this issue. Bug: T148457 Change-Id: I5b31fab317948d231bce5c242af65d6cc7d3f4aa --- resources/src/mediawiki.ui/components/inputs.less | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/src/mediawiki.ui/components/inputs.less b/resources/src/mediawiki.ui/components/inputs.less index 8bddb3a169..87ce7bebe1 100644 --- a/resources/src/mediawiki.ui/components/inputs.less +++ b/resources/src/mediawiki.ui/components/inputs.less @@ -23,6 +23,7 @@ // Styleguide 1.1. .mw-ui-input { background-color: #fff; + color: @colorGray1; .box-sizing( border-box ); display: block; width: 100%; -- 2.20.1