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

Side by Side Diff: blimp/client/app/android/java/res/drawable/dotted_line.xml

Issue 2393443004: Blimp: Added spinner to text input dialog (Closed)
Patch Set: decoupled animations from form submit logic Created 4 years, 1 month 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
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
5
6 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
7
8 <item android:top="-2dp" android:right="-2dp" android:left="-2dp">
David Trainor- moved to gerrit 2016/11/03 03:07:54 indent in?
shaktisahu 2016/11/03 18:10:04 Done.
9 <shape>
10 <solid android:color="#FFFFFF" />
11 <stroke
12 android:dashGap="1dp"
13 android:dashWidth="2dp"
14 android:width="1dp"
15 android:color="@color/disabled_text_color" />
16 <padding
17 android:top="5dp"
18 android:left="5dp"
19 android:right="5dp"
20 android:bottom="2dp"/>
21 </shape>
22 </item>
23
24 </layer-list>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698