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

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

Issue 23026006: Add support for color input datalist on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Created 7 years, 3 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 <selector xmlns:android="http://schemas.android.com/apk/res/android">
9 <item android:state_pressed="true">
newt (away) 2013/08/29 05:35:33 you can actually just add "android:color" as an at
10 <color android:color="@android:color/transparent" />
11 </item>
12 <item>
13 <color android:color="@color/color_picker_border_color" />
14 </item>
15 </selector>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698