mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
32 lines
1.5 KiB
XML
32 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- Top title bar: a text view with the Sync icon to the left. -->
|
|
<style name="SyncTop" parent="@android:style/Widget.Holo.ActionBar">
|
|
<item name="android:textAppearance">@android:style/TextAppearance.Holo.Widget.ActionBar.Title</item>
|
|
<item name="android:layout_width">fill_parent</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:gravity">center_vertical|left</item>
|
|
<item name="android:drawableLeft">@drawable/icon</item>
|
|
<item name="android:padding">4dp</item>
|
|
<item name="android:drawablePadding">4dp</item>
|
|
</style>
|
|
|
|
<!-- Bottom bar: a horizontal linear layout with buttons in it. -->
|
|
<style name="SyncBottom" parent="@android:style/Holo.Light.ButtonBar">
|
|
<item name="android:layout_width">fill_parent</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
</style>
|
|
|
|
<style name="SyncButton" parent="@android:style/Widget.Holo.Light.Button.Small">
|
|
<item name="android:layout_width">fill_parent</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:layout_weight">1</item>
|
|
<item name="android:background">?android:attr/selectableItemBackground</item>
|
|
</style>
|
|
|
|
</resources>
|