Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Unified Diff: chrome/android/java/res/values-v17/styles.xml

Issue 2365733002: Inherit default text color from MainTheme. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated CL with android:textColor added through DownloadsActivityTheme as well as reusing style/Pay… Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/values-v17/styles.xml
diff --git a/chrome/android/java/res/values-v17/styles.xml b/chrome/android/java/res/values-v17/styles.xml
index 0fe3eb93c79853d9eae94a6a79ae21b503353449..e45a97c502a4daa3bad3f07f58d75cdaa0aa182a 100644
--- a/chrome/android/java/res/values-v17/styles.xml
+++ b/chrome/android/java/res/values-v17/styles.xml
@@ -23,6 +23,7 @@
<item name="android:textColorHighlight">@color/text_highlight_color</item>
<item name="android:textColorLink">@color/light_active_color</item>
<item name="android:statusBarColor" tools:targetApi="21">@android:color/black</item>
+ <item name="android:textColor">@color/default_text_color</item>
gone 2016/10/07 21:42:17 This impacts every bit of text everywhere that is
<!-- Overriding AppCompat values -->
<item name="colorControlNormal">@color/light_normal_color</item>
@@ -55,6 +56,7 @@
<style name="DownloadActivityTheme" parent="FullscreenWhiteDialog">
<item name="colorPrimaryDark">@android:color/black</item>
+ <item name="android:textColor">@color/default_text_color</item>
<!-- Remove ActionBar -->
<item name="windowNoTitle">true</item>

Powered by Google App Engine
This is Rietveld 408576698