123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- ownCloud Android client application
- Copyright (C) 2015 ownCloud Inc.
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License version 2,
- as published by the Free Software Foundation.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- -->
- <resources xmlns:android="http://schemas.android.com/apk/res/android">
- <style name="Theme.ownCloud.Toolbar">
- <item name="android:windowDrawsSystemBarBackgrounds">true</item>
- <item name="windowNoTitle">true</item>
- <item name="windowActionBar">false</item>
- <item name="colorPrimary">@color/primary</item>
- <item name="colorPrimaryDark">@color/primary_dark</item>
- <item name="colorAccent">@color/color_accent</item>
- <item name="android:alertDialogTheme">@style/Theme.ownCloud.Dialog</item>
- <item name="alertDialogTheme">@style/ownCloud.AlertDialog</item>
- <item name="searchViewStyle">@style/ownCloud.SearchView</item>
- <item name="windowActionModeOverlay">true</item>
- </style>
- <style name="Theme.ownCloud.Toolbar.Drawer">
- <item name="android:statusBarColor">@android:color/transparent</item>
- </style>
- </resources>
|