1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/values-v11/sync_styles.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<resources xmlns:android="http://schemas.android.com/apk/res/android"> 1.10 + <!-- Top title bar: a text view with the Sync icon to the left. --> 1.11 + <style name="SyncTop" parent="@android:style/Widget.Holo.ActionBar"> 1.12 + <item name="android:textAppearance">@android:style/TextAppearance.Holo.Widget.ActionBar.Title</item> 1.13 + <item name="android:layout_width">fill_parent</item> 1.14 + <item name="android:layout_height">wrap_content</item> 1.15 + <item name="android:gravity">center_vertical|left</item> 1.16 + <item name="android:drawableLeft">@drawable/icon</item> 1.17 + <item name="android:padding">4dp</item> 1.18 + <item name="android:drawablePadding">4dp</item> 1.19 + </style> 1.20 + 1.21 + <!-- Bottom bar: a horizontal linear layout with buttons in it. --> 1.22 + <style name="SyncBottom" parent="@android:style/Holo.Light.ButtonBar"> 1.23 + <item name="android:layout_width">fill_parent</item> 1.24 + <item name="android:layout_height">wrap_content</item> 1.25 + </style> 1.26 + 1.27 + <style name="SyncButton" parent="@android:style/Widget.Holo.Light.Button.Small"> 1.28 + <item name="android:layout_width">fill_parent</item> 1.29 + <item name="android:layout_height">wrap_content</item> 1.30 + <item name="android:layout_weight">1</item> 1.31 + <item name="android:background">?android:attr/selectableItemBackground</item> 1.32 + </style> 1.33 + 1.34 +</resources>