Alexander Afanasyev | ddaa831 | 2015-01-27 16:33:45 -0800 | [diff] [blame] | 1 | <resources> |
| 2 | |
| 3 | <!-- Base application theme. --> |
| 4 | <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> |
| 5 | <!-- Customize your theme here. --> |
| 6 | </style> |
| 7 | |
Ivan Yeo | 215fc2a | 2015-03-17 22:35:04 -0700 | [diff] [blame] | 8 | <style name="default_dialog_margin"> |
Alexander Afanasyev | af2b356 | 2015-03-11 13:58:59 -0700 | [diff] [blame] | 9 | <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 Yeo | 215fc2a | 2015-03-17 22:35:04 -0700 | [diff] [blame] | 15 | <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 Afanasyev | eac787c | 2015-03-21 11:44:09 -0500 | [diff] [blame^] | 61 | <style name="main_fragment_linear_layout"> |
| 62 | <item name="android:orientation">horizontal</item> |
| 63 | <item name="android:layout_width">match_parent</item> |
| 64 | <item name="android:layout_height">wrap_content</item> |
| 65 | </style> |
| 66 | |
| 67 | <style name="main_fragment_list_title"> |
| 68 | <item name="android:layout_width">wrap_content</item> |
| 69 | <item name="android:layout_height">wrap_content</item> |
| 70 | <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> |
| 71 | <item name="android:textColor">@android:color/primary_text_light</item> |
| 72 | </style> |
| 73 | |
| 74 | <style name="main_fragment_list_value"> |
| 75 | <item name="android:layout_width">match_parent</item> |
| 76 | <item name="android:layout_height">wrap_content</item> |
| 77 | <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> |
| 78 | <item name="android:gravity">right</item> |
| 79 | <item name="android:textColor">@android:color/secondary_text_dark</item> |
| 80 | <item name="android:layout_gravity">right</item> |
| 81 | </style> |
Alexander Afanasyev | ddaa831 | 2015-01-27 16:33:45 -0800 | [diff] [blame] | 82 | </resources> |