| OLD | NEW |
| (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> | |
| OLD | NEW |