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

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

Issue 810853003: Upstream FullscreenManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 6
7 <resources> 7 <resources>
8 <!-- Preferences --> 8 <!-- Preferences -->
9 <style name="PreferencesTheme" parent="ThemeWithActionBar"> 9 <style name="PreferencesTheme" parent="ThemeWithActionBar">
10 <item name="android:textColorLink">@color/pref_accent_color</item> 10 <item name="android:textColorLink">@color/pref_accent_color</item>
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 <item name="android:showDividers">middle</item> 148 <item name="android:showDividers">middle</item>
149 </style> 149 </style>
150 <style name="ButtonBarButton" parent="@android:style/Widget.Holo.Light.Butto n"> 150 <style name="ButtonBarButton" parent="@android:style/Widget.Holo.Light.Butto n">
151 <item name="android:layout_width">0dp</item> 151 <item name="android:layout_width">0dp</item>
152 <item name="android:layout_height">match_parent</item> 152 <item name="android:layout_height">match_parent</item>
153 <item name="android:layout_weight">1</item> 153 <item name="android:layout_weight">1</item>
154 <item name="android:background">?attr/selectableItemBackground</item> 154 <item name="android:background">?attr/selectableItemBackground</item>
155 <item name="android:paddingStart">4dp</item> 155 <item name="android:paddingStart">4dp</item>
156 <item name="android:paddingEnd">4dp</item> 156 <item name="android:paddingEnd">4dp</item>
157 </style> 157 </style>
158 <style name="info_bubble">
159 <item name="android:textColor">@android:color/white</item>
160 <item name="android:textStyle">bold</item>
161 <item name="android:textSize">18sp</item>
162 </style>
163 <style name="FullscreenNotificationBubble" parent="@android:style/Animation. Toast">
164 <item name="android:windowEnterAnimation">@anim/fullscreen_notification_ in</item>
165 </style>
158 166
159 </resources> 167 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698