]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/values/styles.xml
4622e2a9962e3a38805b64fb15e0fd7b622c4032
[mobile-ledger.git] / app / src / main / res / values / styles.xml
1 <!--
2   ~ Copyright © 2019 Damyan Ivanov.
3   ~ This file is part of MoLe.
4   ~ MoLe is free software: you can distribute it and/or modify it
5   ~ under the term of the GNU General Public License as published by
6   ~ the Free Software Foundation, either version 3 of the License, or
7   ~ (at your opinion), any later version.
8   ~
9   ~ MoLe is distributed in the hope that it will be useful,
10   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
11   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   ~ GNU General Public License terms for details.
13   ~
14   ~ You should have received a copy of the GNU General Public License
15   ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16   -->
17
18 <resources>
19
20     <!-- Base application theme. -->
21     <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
22         <!-- Customize your theme here. -->
23         <item name="colorPrimary">@color/colorPrimary</item>
24         <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
25         <item name="colorAccent">@color/colorAccent</item>
26     </style>
27
28     <style name="AppTheme.NoActionBar">
29         <item name="windowActionBar">false</item>
30         <item name="windowNoTitle">true</item>
31     </style>
32
33     <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
34
35     <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
36
37     <style name="nav_button">
38         <item name="android:layout_width">match_parent</item>
39         <item name="android:layout_height">40dp</item>
40         <item name="android:clickable">true</item>
41         <item name="android:drawablePadding">24dp</item>
42         <item name="android:focusable">auto</item>
43         <item name="android:gravity">center_vertical|start</item>
44         <item name="android:paddingStart">@dimen/activity_horizontal_margin</item>
45         <item name="android:paddingEnd">@dimen/activity_horizontal_margin</item>
46     </style>
47
48     <style name="account_summary_account_name">
49         <item name="android:layout_width">wrap_content</item>
50         <item name="android:layout_height">wrap_content</item>
51         <item name="android:layout_weight">5</item>
52     </style>
53
54     <style name="account_summary_amounts">
55         <item name="android:layout_width">wrap_content</item>
56         <item name="android:layout_height">wrap_content</item>
57         <item name="android:layout_marginEnd">0dp</item>
58         <item name="android:layout_weight">1</item>
59         <item name="android:minWidth">60dp</item>
60         <item name="android:textAlignment">viewEnd</item>
61     </style>
62
63     <style name="account_summary_account_entry_table">
64         <item name="android:layout_width">match_parent</item>
65         <item name="android:layout_height">match_parent</item>
66     </style>
67
68 </resources>