[fenix] For https://github.com/mozilla-mobile/fenix/issues/15968 - Show a border...
[gecko.git] / mobile / android / fenix / app / src / main / res / drawable / tab_tray_grid_item_selected_border.xml
blobb2165f78e1cb8ced3066b0bdf639cf32ab2130a3
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3    - License, v. 2.0. If a copy of the MPL was not distributed with this
4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <layer-list
7     xmlns:android="http://schemas.android.com/apk/res/android">
9     <item
10         android:bottom="4dp"
11         android:left="4dp"
12         android:right="4dp"
13         android:top="4dp">
15         <shape
16             android:shape="rectangle">
18             <stroke
19                 android:width="4dp"
20                 android:color="@color/photonViolet70" />
22             <corners android:radius="@dimen/tab_tray_grid_item_border_radius" />
23         </shape>
25     </item>
27 </layer-list>