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

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

Issue 1800963002: [remoting android] Set contentInsetStart on each Toolbar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <resources> 8 <resources>
9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar"> 9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
10 <item name="colorPrimary">#E0E0E0</item> 10 <item name="colorPrimary">#E0E0E0</item>
(...skipping 22 matching lines...) Expand all
33 </style> 33 </style>
34 <style name="EmptyStateText.Hyperlink" parent="@style/Widget.AppCompat.Butto n.Borderless"> 34 <style name="EmptyStateText.Hyperlink" parent="@style/Widget.AppCompat.Butto n.Borderless">
35 <item name="android:textColor">#4285F4</item> 35 <item name="android:textColor">#4285F4</item>
36 <item name="android:textSize">18sp</item> 36 <item name="android:textSize">18sp</item>
37 </style> 37 </style>
38 38
39 <style name="NavigationTextStyle"> 39 <style name="NavigationTextStyle">
40 <item name="android:textColor">#212121</item> 40 <item name="android:textColor">#212121</item>
41 <item name="android:fontFamily">sans-serif-medium</item> 41 <item name="android:fontFamily">sans-serif-medium</item>
42 </style> 42 </style>
43
44 <style name="ToolbarStyle">
45 <item name="android:background">?attr/colorPrimary</item>
46 <item name="android:elevation">4dp</item>
47 <item name="contentInsetStart">@dimen/toolbar_content_inset_start</item>
48 </style>
43 </resources> 49 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698