Bug 1201206 - Inherit from version specific styles for prefs. r=mhaigh

This excludes Material design in v21+, which will be overridden with AppCompat
in the following changeset.

--HG--
extra : commitid : JL19c4EJfVf
extra : rebase_source : b9030c31b99bd2e1613fc7898e7ef4f9c275003c
This commit is contained in:
Michael Comella 2015-09-22 16:26:29 -07:00
parent 923dfe3379
commit 9e877054db
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,8 @@
<style name="GeckoTitleDialogBase" parent="@android:style/Theme.Holo.Light.Dialog" />
<style name="GeckoPreferencesBase" parent="GeckoBase">
<style name="GeckoPreferencesBase" parent="@android:style/Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowActionBar">true</item>
<item name="android:windowNoTitle">false</item>
<item name="android:actionBarStyle">@style/ActionBar.GeckoPreferences</item>

View File

@ -21,8 +21,9 @@
<style name="GeckoTitleDialogBase" parent="@android:style/Theme.Dialog" />
<style name="GeckoPreferencesBase" parent="GeckoBase">
<style name="GeckoPreferencesBase" parent="@android:style/Theme.Light">
<item name="android:windowNoTitle">false</item>
<item name="android:windowContentOverlay">@null</item>
</style>
<!--