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

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

Issue 397293006: Update Android overflow menu window animation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated values, rebased Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/android/java/res/interpolator/transform_curve_interpolator.xml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <style name="AppBannerTitle"> 8 <style name="AppBannerTitle">
9 <item name="android:textColor">#333333</item> 9 <item name="android:textColor">#333333</item>
10 <item name="android:textSize">@dimen/app_banner_title_text_size</item> 10 <item name="android:textSize">@dimen/app_banner_title_text_size</item>
11 <item name="android:fontFamily">sans-serif-light</item> 11 <item name="android:fontFamily">sans-serif-light</item>
12 </style> 12 </style>
13 <style name="AppBannerButton"> 13 <style name="AppBannerButton">
14 <item name="android:textSize">@dimen/app_banner_button_text_size</item> 14 <item name="android:textSize">@dimen/app_banner_button_text_size</item>
15 <item name="android:textAllCaps">true</item> 15 <item name="android:textAllCaps">true</item>
16 <item name="android:fontFamily">sans-serif</item> 16 <item name="android:fontFamily">sans-serif</item>
17 <item name="android:textStyle">bold</item> 17 <item name="android:textStyle">bold</item>
18 </style> 18 </style>
19 <style name="OverflowMenuTheme" parent="Theme.AppCompat.Light"> 19 <style name="OverflowMenuTheme" parent="Theme.AppCompat.Light">
20 <item name="android:popupBackground">@null</item> 20 <item name="android:popupBackground">@null</item>
21 <item name="android:listDivider">@null</item> 21 <item name="android:listDivider">@null</item>
22 <item name="android:listPreferredItemHeightSmall">48dp</item> 22 <item name="android:listPreferredItemHeightSmall">48dp</item>
23 <item name="android:listPreferredItemPaddingStart">16dp</item> 23 <item name="android:listPreferredItemPaddingStart">16dp</item>
24 <item name="android:listPreferredItemPaddingEnd">16dp</item> 24 <item name="android:listPreferredItemPaddingEnd">16dp</item>
25 <item name="android:textSize">16sp</item> 25 <item name="android:textSize">16sp</item>
26 <item name="android:popupAnimationStyle">@style/OverflowMenuAnim</item>
27 </style>
28 <style name="OverflowMenuAnim">
29 <item name="android:windowEnterAnimation">@anim/menu_enter</item>
30 <item name="android:windowExitAnimation">@anim/menu_exit</item>
26 </style> 31 </style>
27 </resources> 32 </resources>
OLDNEW
« no previous file with comments | « chrome/android/java/res/interpolator/transform_curve_interpolator.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698