<?xml version="1.0" encoding="utf-8"?>

<!--
 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * 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 <https://www.gnu.org/licenses/>.
-->

<resources>

	<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
		<item name="colorPrimary">@color/headerBackgroundPrimary</item>
		<item name="colorPrimaryDark">@color/headerBackgroundPrimaryDark</item>
		<item name="colorAccent">@color/textAccent</item>
	</style>

	<style name="AppTheme.NoActionBar">
		<item name="windowActionBar">false</item>
		<item name="windowNoTitle">true</item>
	</style>

	<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>

	<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>

	<style name="AppTheme.SectionTitle">
		<item name="android:textColor">@color/textAccent</item>
		<item name="android:layout_width">match_parent</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:paddingLeft">@dimen/activity_horizontal_margin</item>
		<item name="android:paddingRight">@dimen/activity_horizontal_margin</item>
		<item name="android:paddingTop">@dimen/activity_vertical_margin</item>
	</style>

	<style name="AppTheme.List">
		<item name="android:layout_width">match_parent</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:divider">@drawable/horizontal_line</item>
		<item name="android:orientation">vertical</item>
		<item name="android:showDividers">middle</item>
	</style>

	<style name="AppTheme.ListBlock">
		<item name="android:layout_width">match_parent</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:paddingBottom">@dimen/activity_vertical_margin</item>
		<item name="android:paddingLeft">@dimen/activity_horizontal_margin</item>
		<item name="android:paddingRight">@dimen/activity_horizontal_margin</item>
		<item name="android:paddingTop">@dimen/activity_vertical_margin</item>
		<item name="android:orientation">vertical</item>
		<item name="android:focusable">true</item>
	</style>

	<style name="AppTheme.ListBlock.Clickable">
		<item name="android:background">?attr/selectableItemBackground</item>
		<item name="android:clickable">true</item>
	</style>

	<style name="AppTheme.ListBlock.Placeholder">
		<item name="android:textStyle">italic</item>
	</style>

	<style name="AppTheme.BlockTitle">
		<item name="android:layout_width">match_parent</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:textAppearance">@style/TextAppearance.AppCompat.Light.SearchResult.Subtitle</item>
	</style>

	<style name="AppTheme.BlockContent">
		<item name="android:layout_width">match_parent</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:textColor">@color/textSecondary</item>
	</style>

	<style name="AppTheme.TabLayout" parent="Widget.Design.TabLayout">
		<item name="android:background">@color/backgroundSecondary</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:layout_width">match_parent</item>
		<item name="tabGravity">fill</item>
	</style>

</resources>