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

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

Issue 2814593003: 🔍 Continue working on the search widget prototype (Closed)
Patch Set: 🔍 Continue cleaning up the search widget. Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <resources xmlns:tools="http://schemas.android.com/tools"> 6 <resources xmlns:tools="http://schemas.android.com/tools">
7 <!-- Q: Why put style resources under values-v17/ ? 7 <!-- Q: Why put style resources under values-v17/ ?
8 A: Problem: 8 A: Problem:
9 1. paddingStart causes a crash on Galaxy Tab&Note b/8351339. 9 1. paddingStart causes a crash on Galaxy Tab&Note b/8351339.
10 2. So we wrote a build script(generate_v14_compatible_resources.py) to convert 10 2. So we wrote a build script(generate_v14_compatible_resources.py) to convert
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 </style> 66 </style>
67 <style name="WebappSplashScreenTextTheme"> 67 <style name="WebappSplashScreenTextTheme">
68 <item name="android:textSize">24sp</item> 68 <item name="android:textSize">24sp</item>
69 <item name="android:ellipsize">end</item> 69 <item name="android:ellipsize">end</item>
70 <item name="android:textColor">@color/default_text_color</item> 70 <item name="android:textColor">@color/default_text_color</item>
71 <item name="android:gravity">center</item> 71 <item name="android:gravity">center</item>
72 <item name="android:fontFamily">sans-serif-condensed</item> 72 <item name="android:fontFamily">sans-serif-condensed</item>
73 <item name="android:maxLines">2</item> 73 <item name="android:maxLines">2</item>
74 </style> 74 </style>
75 75
76 <style name="OverlayTheme" parent="MainTheme">
77 <!-- Using these values will make the Activity translucent.
78 <item name="android:windowIsTranslucent">true</item>
79 <item name="android:windowBackground">@android:color/transparent</ite m>
80 <item name="android:windowContentOverlay">@null</item>
81 <item name="android:windowNoTitle">true</item>
82 -->
83 <item name="android:windowBackground">@color/light_normal_color</item>
84 </style>
85
86 <style name="AlertDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert"> 76 <style name="AlertDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert">
87 <item name="android:textColorHighlight">@color/text_highlight_color</ite m> 77 <item name="android:textColorHighlight">@color/text_highlight_color</ite m>
88 78
89 <!-- Overriding AppCompat values --> 79 <!-- Overriding AppCompat values -->
90 <item name="colorAccent">@color/light_active_color</item> 80 <item name="colorAccent">@color/light_active_color</item>
91 <item name="colorControlActivated">@color/light_active_color</item> 81 <item name="colorControlActivated">@color/light_active_color</item>
92 <item name="colorControlNormal">@color/light_normal_color</item> 82 <item name="colorControlNormal">@color/light_normal_color</item>
93 <item name="colorPrimary">@color/light_active_color</item> 83 <item name="colorPrimary">@color/light_active_color</item>
94 84
95 <!-- Default TintedImageButton tint --> 85 <!-- Default TintedImageButton tint -->
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 <item name="android:contentDescription">@null</item> 675 <item name="android:contentDescription">@null</item>
686 <item name="android:scaleType">center</item> 676 <item name="android:scaleType">center</item>
687 <item name="android:background">@color/light_active_color</item> 677 <item name="android:background">@color/light_active_color</item>
688 </style> 678 </style>
689 679
690 <!-- Miscellaneous --> 680 <!-- Miscellaneous -->
691 <style name="BottomSheetContentTitle" parent="TextAppearance.Widget.AppCompa t.Toolbar.Title"> 681 <style name="BottomSheetContentTitle" parent="TextAppearance.Widget.AppCompa t.Toolbar.Title">
692 <item name="android:textSize">20sp</item> 682 <item name="android:textSize">20sp</item>
693 </style> 683 </style>
694 </resources> 684 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698