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

Side by Side Diff: ui/android/java/res/drawable/color_button_background.xml

Issue 23026006: Add support for color input datalist on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
newt (away) 2013/10/15 18:00:15 this is currently a bit broken in rtl languages. s
keishi 2013/10/16 04:47:23 The number of suggestions might not be a multiple
9 <item
10 android:top="0dp"
11 android:right="0dp"
12 android:bottom="0dp"
13 android:left="0dp">
14 <shape android:shape="rectangle">
15 <solid android:color="@color/color_picker_border_color"/>
16 </shape>
17 </item>
18 <item android:right="1px">
19 <shape android:shape="rectangle">
20 <solid android:color="@color/color_picker_background_color"/>
21 </shape>
22 </item>
23 <item
24 android:id="@+id/color_button_swatch"
25 android:top="1px"
26 android:right="2px"
27 android:bottom="1px"
28 android:left="1px">
29 <shape android:shape="rectangle">
30 <solid android:color="#FF0000"/>
31 </shape>
32 </item>
33 </layer-list>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698