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

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 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">
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:top="0px"
19 android:right="1px"
20 android:bottom="0px"
21 android:left="1px">
22 <shape android:shape="rectangle">
23 <solid android:color="@color/color_picker_background_color"/>
24 </shape>
25 </item>
26 <item
27 android:id="@+id/color_button_swatch"
28 android:top="1px"
29 android:right="2px"
30 android:bottom="1px"
31 android:left="2px">
32 <shape android:shape="rectangle">
33 <solid android:color="#FF0000"/>
34 </shape>
35 </item>
36 </layer-list>
OLDNEW
« no previous file with comments | « content/renderer/renderer_webcolorchooser_impl.cc ('k') | ui/android/java/res/drawable/color_picker_border.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698