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

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

Issue 1694093003: Rename EnhancedBookmarks to Bookmarks, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 <item name="android:statusBarColor" tools:targetApi="21">@android:color/ black</item> 325 <item name="android:statusBarColor" tools:targetApi="21">@android:color/ black</item>
326 <item name="android:textColorLink">@color/light_active_color</item> 326 <item name="android:textColorLink">@color/light_active_color</item>
327 <item name="colorPrimary">@color/light_active_color</item> 327 <item name="colorPrimary">@color/light_active_color</item>
328 <item name="colorAccent">@color/light_active_color</item> 328 <item name="colorAccent">@color/light_active_color</item>
329 329
330 <!-- Remove ActionBar --> 330 <!-- Remove ActionBar -->
331 <item name="windowNoTitle">true</item> 331 <item name="windowNoTitle">true</item>
332 <item name="windowActionBar">false</item> 332 <item name="windowActionBar">false</item>
333 </style> 333 </style>
334 334
335 <!-- Enhanced bookmarks --> 335 <!-- Bookmarks -->
336 <style name="EnhancedBookmarkDialog" parent="Theme.AppCompat.Light.DialogWhe nLarge"> 336 <style name="BookmarkDialog" parent="Theme.AppCompat.Light.DialogWhenLarge">
337 <item name="android:windowBackground">@android:color/transparent</item> 337 <item name="android:windowBackground">@android:color/transparent</item>
338 <item name="colorPrimaryDark">@android:color/black</item> 338 <item name="colorPrimaryDark">@android:color/black</item>
339 <item name="colorAccent">@color/light_active_color</item> 339 <item name="colorAccent">@color/light_active_color</item>
340 340
341 <!-- Remove ActionBar --> 341 <!-- Remove ActionBar -->
342 <item name="windowNoTitle">true</item> 342 <item name="windowNoTitle">true</item>
343 <item name="windowActionBar">false</item> 343 <item name="windowActionBar">false</item>
344 </style> 344 </style>
345 <style name="EnhancedBookmarkDialogWhite" parent="EnhancedBookmarkDialog"> 345 <style name="BookmarkDialogWhite" parent="BookmarkDialog">
346 <item name="android:windowBackground">@drawable/bg_white_dialog</item> 346 <item name="android:windowBackground">@drawable/bg_white_dialog</item>
347 </style> 347 </style>
348 <style name="EnhancedBookmarkTitleBarButton"> 348 <style name="BookmarkTitleBarButton">
349 <item name="android:layout_width">wrap_content</item> 349 <item name="android:layout_width">wrap_content</item>
350 <item name="android:layout_height">wrap_content</item> 350 <item name="android:layout_height">wrap_content</item>
351 <item name="android:background">@null</item> 351 <item name="android:background">@null</item>
352 <item name="android:padding">15dp</item> 352 <item name="android:padding">15dp</item>
353 </style> 353 </style>
354 <style name="EnhancedBookmarkMenuStyle" parent="Widget.AppCompat.ListPopupWi ndow"> 354 <style name="BookmarkMenuStyle" parent="Widget.AppCompat.ListPopupWindow">
355 <item name="android:popupBackground">@drawable/menu_bg</item> 355 <item name="android:popupBackground">@drawable/menu_bg</item>
356 </style> 356 </style>
357 <style name="EnhancedBookmarkDrawerItemStyle"> 357 <style name="BookmarkDrawerItemStyle">
358 <item name="android:layout_width">match_parent</item> 358 <item name="android:layout_width">match_parent</item>
359 <item name="android:layout_height">?android:attr/listPreferredItemHeight Small</item> 359 <item name="android:layout_height">?android:attr/listPreferredItemHeight Small</item>
360 <item name="android:textAlignment">viewStart</item> 360 <item name="android:textAlignment">viewStart</item>
361 <item name="android:gravity">start|center_vertical</item> 361 <item name="android:gravity">start|center_vertical</item>
362 <item name="android:paddingStart">@dimen/enhanced_bookmark_drawer_drawab le_padding</item> 362 <item name="android:paddingStart">@dimen/bookmark_drawer_drawable_paddin g</item>
363 <item name="android:paddingEnd">@dimen/enhanced_bookmark_drawer_drawable _padding</item> 363 <item name="android:paddingEnd">@dimen/bookmark_drawer_drawable_padding< /item>
364 <item name="android:singleLine">true</item> 364 <item name="android:singleLine">true</item>
365 <item name="android:textAppearance">?android:attr/textAppearanceLargePop upMenu</item> 365 <item name="android:textAppearance">?android:attr/textAppearanceLargePop upMenu</item>
366 <item name="android:textSize">14sp</item> 366 <item name="android:textSize">14sp</item>
367 </style> 367 </style>
368 368
369 <!-- Signin promo dialog--> 369 <!-- Signin promo dialog-->
370 <style name="SigninPromoDialog" parent="Theme.AppCompat.Light"> 370 <style name="SigninPromoDialog" parent="Theme.AppCompat.Light">
371 <item name="android:windowNoTitle">true</item> 371 <item name="android:windowNoTitle">true</item>
372 <item name="android:windowFrame">@null</item> 372 <item name="android:windowFrame">@null</item>
373 <item name="android:windowIsFloating">true</item> 373 <item name="android:windowIsFloating">true</item>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 <style name="ToolbarMenuButtonTablet" parent="ToolbarButton"> 454 <style name="ToolbarMenuButtonTablet" parent="ToolbarButton">
455 <item name="android:layout_width">43dp</item> 455 <item name="android:layout_width">43dp</item>
456 <item name="android:paddingEnd">3.5dp</item> 456 <item name="android:paddingEnd">3.5dp</item>
457 </style> 457 </style>
458 <style name="AppMenuItem"> 458 <style name="AppMenuItem">
459 <item name="android:paddingStart">16dp</item> 459 <item name="android:paddingStart">16dp</item>
460 <item name="android:paddingEnd">16dp</item> 460 <item name="android:paddingEnd">16dp</item>
461 <item name="android:background">?attr/listChoiceBackgroundIndicator</ite m> 461 <item name="android:background">?attr/listChoiceBackgroundIndicator</ite m>
462 </style> 462 </style>
463 </resources> 463 </resources>
OLDNEW
« no previous file with comments | « chrome/android/java/res/values-sw720dp-v17/colors.xml ('k') | chrome/android/java/res/values/colors.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698