Files
palemoon27/mobile/android/base/resources/values-v11/themes.xml
T
2018-07-24 23:10:50 +08:00

53 lines
2.6 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">
<!--
Base application theme. This could be overridden by GoannaBaseTheme
in other res/values-XXX/themes.xml.
-->
<style name="GoannaBase" parent="@android:style/Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="GoannaDialogBase" parent="@android:style/Theme.Holo.Light.Dialog">
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
</style>
<style name="GoannaTitleDialogBase" parent="@android:style/Theme.Holo.Light.Dialog" />
<style name="GoannaPreferencesBase" parent="GoannaBase">
<item name="android:windowActionBar">true</item>
<item name="android:windowNoTitle">false</item>
<item name="android:actionBarStyle">@style/ActionBar.GoannaPreferences</item>
</style>
<!--
Activity based themes for API 11+. This theme completely replaces
GoannaAppBase from res/values/themes.xml on API 11+ devices.
-->
<style name="GoannaAppBase" parent="Goanna">
<item name="android:actionButtonStyle">@style/GoannaActionBar.Button</item>
<item name="android:actionModeCopyDrawable">@drawable/ab_copy</item>
<item name="android:actionModeCutDrawable">@drawable/ab_cut</item>
<item name="android:actionModePasteDrawable">@drawable/ab_paste</item>
<item name="android:listViewStyle">@style/Widget.ListView</item>
<item name="android:panelBackground">@drawable/menu_panel_bg</item>
<item name="android:spinnerDropDownItemStyle">@style/Widget.DropDownItem.Spinner</item>
<item name="android:spinnerItemStyle">@style/Widget.TextView.SpinnerItem</item>
<item name="menuItemActionViewStyle">@style/Widget.MenuItemActionView</item>
<item name="menuItemDefaultStyle">@style/Widget.MenuItemDefault</item>
<item name="menuItemSecondaryActionBarStyle">@style/Widget.MenuItemSecondaryActionBar</item>
<item name="tabGridLayoutViewStyle">@style/Widget.TabsGridLayout</item>
</style>
</resources>