Fixed light theme on API > 11

Forgot that it also needed to go in the values-v11 styles file.
This commit is contained in:
Peter Serwylo 2014-06-04 17:38:42 +09:30 committed by Hans-Christoph Steiner
parent b82be525b9
commit 208146882e

View File

@ -2,10 +2,14 @@
<style name="AppBaseThemeDark" parent="Theme.AppCompat">
<!-- API 11 theme customizations go here -->
</style>
</style>
<style name="AppBaseThemeLight" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="AppBaseThemeLight" parent="Theme.AppCompat.Light">
<!-- API 11 theme customizations go here -->
</style>
</style>
<style name="AppBaseThemeLightWithDarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- API 11 theme customizations go here -->
</style>
</resources>