blob: 08a8a5cf3067ea72bd07f0ed3a7e052a885e7c1f [file] [log] [blame]
Alexander Afanasyevddaa8312015-01-27 16:33:45 -08001<resources>
2
3 <!-- Base application theme. -->
4 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
5 <!-- Customize your theme here. -->
6 </style>
7
Ivan Yeo215fc2a2015-03-17 22:35:04 -07008 <style name="default_dialog_margin">
Alexander Afanasyevaf2b3562015-03-11 13:58:59 -07009 <item name="android:layout_marginTop">16dp</item>
10 <item name="android:layout_marginLeft">4dp</item>
11 <item name="android:layout_marginRight">4dp</item>
12 <item name="android:layout_marginBottom">4dp</item>
13 </style>
14
Ivan Yeo215fc2a2015-03-17 22:35:04 -070015 <style name="default_linear_layout_padding">
16 <item name="android:paddingLeft">@dimen/default_padding_left</item>
17 <item name="android:paddingRight">@dimen/default_padding_right</item>
18 </style>
19
20 <style name="default_custom_white_button">
21 <item name="android:gravity">left|center_vertical</item>
22 <item name="android:background">@drawable/custom_white_button</item>
23 <item name="android:textColor">@android:color/primary_text_light</item>
24 <item name="android:textAppearance">?android:textAppearanceSmall</item>
25 </style>
26
27 <style name="item_title">
28 <item name="android:textAppearance">?android:textAppearanceSmall</item>
29 <item name="android:layout_width">match_parent</item>
30 <item name="android:layout_height">wrap_content</item>
31 <item name="android:textColor">@android:color/primary_text_light</item>
32 </style>
33
34 <style name="item_secondary">
35 <item name="android:textAppearance">?android:textAppearanceSmall</item>
36 <item name="android:textColor">@android:color/secondary_text_dark</item>
37 </style>
38
39 <style name="two_row_item_title" parent="item_title">
40 <item name="android:layout_width">match_parent</item>
41 <item name="android:layout_height">wrap_content</item>
42 </style>
43
44 <style name="two_row_item_secondary" parent="item_secondary">
45 <item name="android:layout_width">match_parent</item>
46 <item name="android:layout_height">wrap_content</item>
47 </style>
48
49 <style name="two_column_item_title" parent="item_title">
50 <item name="android:layout_width">wrap_content</item>
51 <item name="android:layout_height">wrap_content</item>
52 </style>
53
54 <style name="two_column_item_secondary" parent="item_secondary">
55 <item name="android:layout_width">match_parent</item>
56 <item name="android:layout_height">wrap_content</item>
57 <item name="android:gravity">right</item>
58 <item name="android:layout_gravity">right</item>
59 </style>
60
Alexander Afanasyevddaa8312015-01-27 16:33:45 -080061</resources>