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

Side by Side Diff: chrome/android/java/res/values/dimens.xml

Issue 872023002: Use floating labels for preference forms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually commit AddressField.java Created 5 years, 11 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 6
7 <resources> 7 <resources>
8 <!-- Certificate Viewer Dimensions --> 8 <!-- Certificate Viewer Dimensions -->
9 <dimen name="certificate_viewer_padding_wide">24dp</dimen> 9 <dimen name="certificate_viewer_padding_wide">24dp</dimen>
10 <dimen name="certificate_viewer_padding_thin">16dp</dimen> 10 <dimen name="certificate_viewer_padding_thin">16dp</dimen>
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 <dimen name="app_banner_logo_margin_end">8dp</dimen> 83 <dimen name="app_banner_logo_margin_end">8dp</dimen>
84 84
85 <dimen name="app_banner_star_height">16dp</dimen> 85 <dimen name="app_banner_star_height">16dp</dimen>
86 86
87 <!-- Password generation popup dimensions --> 87 <!-- Password generation popup dimensions -->
88 <dimen name="password_generation_divider_height">1dp</dimen> 88 <dimen name="password_generation_divider_height">1dp</dimen>
89 <dimen name="password_generation_text_size">14sp</dimen> 89 <dimen name="password_generation_text_size">14sp</dimen>
90 <dimen name="password_generation_horizontal_margin">10dp</dimen> 90 <dimen name="password_generation_horizontal_margin">10dp</dimen>
91 <dimen name="password_generation_text_vertical_margin">12dp</dimen> 91 <dimen name="password_generation_text_vertical_margin">12dp</dimen>
92 92
93 <!-- Preferences button dimensions --> 93 <!-- Preferences dimensions -->
94 <!-- TODO(twellington): Remove/update the following dimens after we switch t he PreferencesTheme 94 <!-- TODO(twellington): Remove/update the button dimens after we switch the PreferencesTheme
newt (away) 2015/01/28 20:20:18 update this comment
Theresa 2015/01/29 05:22:13 Done.
95 parent to AppCompat. --> 95 parent to AppCompat. -->
96 <dimen name="pref_button_margin_start">0dp</dimen> 96 <dimen name="pref_button_margin_start">0dp</dimen>
97 <dimen name="pref_button_corner_radius">2dp</dimen> 97 <dimen name="pref_button_corner_radius">2dp</dimen>
98 <dimen name="pref_button_horizontal_padding">16dp</dimen> 98 <dimen name="pref_button_horizontal_padding">16dp</dimen>
99 <dimen name="pref_button_vertical_padding">10dp</dimen> 99 <dimen name="pref_button_vertical_padding">10dp</dimen>
100 100
101 <dimen name="pref_homepage_layout_margin">10dp</dimen>
102
101 <!-- Minimum height/width for a touchable item --> 103 <!-- Minimum height/width for a touchable item -->
102 <dimen name="min_touch_target_size">48dp</dimen> 104 <dimen name="min_touch_target_size">48dp</dimen>
103 105
104 <!-- Text bubble dimensions --> 106 <!-- Text bubble dimensions -->
105 <!-- Tooltip min distance from the edge of the screen. --> 107 <!-- Tooltip min distance from the edge of the screen. -->
106 <dimen name="tooltip_min_edge_margin">3dp</dimen> 108 <dimen name="tooltip_min_edge_margin">3dp</dimen>
107 <!-- Tooltip margin above click target. --> 109 <!-- Tooltip margin above click target. -->
108 <dimen name="tooltip_top_margin">2dp</dimen> 110 <dimen name="tooltip_top_margin">2dp</dimen>
109 <!-- Tooltip border width around the main content bubble. --> 111 <!-- Tooltip border width around the main content bubble. -->
110 <dimen name="tooltip_border_width">1dp</dimen> 112 <dimen name="tooltip_border_width">1dp</dimen>
(...skipping 17 matching lines...) Expand all
128 <!-- User Picture Dimensions --> 130 <!-- User Picture Dimensions -->
129 <dimen name="user_picture_size">40dp</dimen> 131 <dimen name="user_picture_size">40dp</dimen>
130 <dimen name="badged_user_picture_height">40dp</dimen> 132 <dimen name="badged_user_picture_height">40dp</dimen>
131 <!-- The design spec is that the center of the badge should be 4dp from the right edge of the 133 <!-- The design spec is that the center of the badge should be 4dp from the right edge of the
132 user picture. This is equivalent to a badged_user_picture_width of 46dp assu ming a badge_radius 134 user picture. This is equivalent to a badged_user_picture_width of 46dp assu ming a badge_radius
133 of 10dp. --> 135 of 10dp. -->
134 <dimen name="badged_user_picture_width">46dp</dimen> 136 <dimen name="badged_user_picture_width">46dp</dimen>
135 <dimen name="badge_radius">10dp</dimen> 137 <dimen name="badge_radius">10dp</dimen>
136 <dimen name="badge_border_size">1.3dp</dimen> 138 <dimen name="badge_border_size">1.3dp</dimen>
137 </resources> 139 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698