1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<resources>
18    <style name="AccountSetupDialogActivityTheme"
19        parent="@android:style/Theme.Holo.Light.Dialog.NoActionBar" />
20    <!-- Account Setup Activity -->
21    <style name="account_setup_content">
22        <item name="android:background">@drawable/account_setup_background</item>
23    </style>
24
25    <!-- The large headline at the top of every account setup screen -->
26    <style name="account_setup_headline">
27        <item name="android:fontFamily">sans-serif-thin</item>
28        <item name="android:textSize">@dimen/setup_headline_text_size</item>
29        <item name="android:textColor">@color/account_setup_headline_color</item>
30        <item name="android:paddingTop">@dimen/setup_headline_padding_top</item>
31        <item name="android:paddingLeft">@dimen/setup_headline_padding_side</item>
32        <item name="android:paddingRight">@dimen/setup_headline_padding_side</item>
33    </style>
34
35    <style name="account_setup_lower_headline">
36        <item name="android:fontFamily">sans-serif-thin</item>
37        <item name="android:textSize">@dimen/setup_headline_text_size</item>
38        <item name="android:textColor">@color/account_setup_headline_color</item>
39    </style>
40
41    <style name="oauth_label">
42        <item name="android:paddingLeft">10dp</item>
43    </style>
44
45    <style name="account_setup_fragment_container">
46        <item name="android:paddingTop">@dimen/setup_fragment_padding_top</item>
47        <item name="android:paddingLeft">@dimen/setup_fragment_padding_side</item>
48        <item name="android:paddingRight">@dimen/setup_fragment_padding_side</item>
49        <item name="android:paddingBottom">@dimen/setup_fragment_padding_bottom</item>
50    </style>
51
52    <!-- Wizard buttons on the account setup screens -->
53    <style name="account_setup_text_button">
54        <item name="android:layout_width">@dimen/setup_text_button_width</item>
55        <item name="android:layout_height">@dimen/setup_text_button_height</item>
56        <item name="android:textColor">?android:attr/textColorPrimary</item>
57        <item name="android:textSize">@dimen/setup_text_button_text_size</item>
58    </style>
59
60    <!-- Navigation buttons on the account setup screens -->
61    <style name="account_setup_nav_button">
62        <item name="android:layout_margin">@dimen/setup_nav_button_margin</item>
63        <item name="android:background">?android:attr/selectableItemBackground</item>
64        <item name="android:paddingTop">@dimen/setup_nav_button_padding_top</item>
65        <item name="android:paddingLeft">@dimen/setup_nav_button_padding_side</item>
66        <item name="android:paddingRight">@dimen/setup_nav_button_padding_side</item>
67        <item name="android:paddingBottom">@dimen/setup_nav_button_padding_bottom</item>
68        <item name="android:textAllCaps">true</item>
69        <item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
70        <item name="android:textColor">@color/buttontext</item>
71    </style>
72
73    <!-- Cancel/Done buttons on the account settings (server settings) fragments -->
74    <style name="account_settings_button">
75        <item name="android:layout_width">@dimen/setup_text_button_width</item>
76        <item name="android:layout_height">48sp</item>
77        <item name="android:textColor">?android:attr/textColorPrimary</item>
78        <item name="android:textSize">@dimen/setup_text_button_text_size</item>
79    </style>
80
81    <!-- Info text in any account setup screen -->
82    <style name="account_setup_info_text">
83        <item name="android:textSize">20sp</item>
84        <item name="android:textColor">@color/account_setup_info_text_color</item>
85        <item name="android:fontFamily">sans-serif-thin</item>
86        <item name="android:layout_marginBottom">@dimen/setup_info_text_margin_bottom</item>
87    </style>
88
89    <!-- Account setup row label text -->
90    <style name="account_setup_label_text">
91        <item name="android:textColor">?android:attr/textColorPrimary</item>
92        <item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
93        <item name="android:paddingTop">@dimen/setup_label_text_padding_top</item>
94    </style>
95
96    <!-- Account setup row label large text -->
97    <style name="account_setup_label_large_text">
98        <item name="android:textSize">20sp</item>
99        <item name="android:textColor">@color/account_setup_label_large_text_color</item>
100        <item name="android:fontFamily">sans-serif-thin</item>
101        <item name="android:layout_marginBottom">@dimen/setup_label_large_text_margin_bottom</item>
102    </style>
103
104    <!-- Account setup checkboxes -->
105    <style name="account_setup_checkbox">
106        <item name="android:layout_marginTop">@dimen/setup_checkbox_margin_top</item>
107        <item name="android:layout_marginBottom">@dimen/setup_checkbox_margin_bottom</item>
108        <item name="android:layout_marginLeft">@dimen/setup_checkbox_margin_side</item>
109        <item name="android:layout_marginRight">@dimen/setup_checkbox_margin_side</item>
110    </style>
111
112    <!-- Client certificate UI. See also values in styles-ldrtl.xml -->
113    <!-- Client certificate 'select' button, see also styles-ldrtl.xml -->
114    <style name="client_certificate_button"
115           parent="account_setup_text_button">
116        <item name="android:layout_alignParentRight">true</item>
117        <item name="android:paddingLeft">20dp</item>
118        <item name="android:paddingRight">20dp</item>
119   </style>
120
121    <!-- Client certificate title, see also styles-ldrtl.xml -->
122    <style name="client_certificate_title">
123        <item name="android:layout_alignParentLeft">true</item>
124        <item name="android:layout_toLeftOf">@id/select_button</item>
125    </style>
126
127    <!-- Client certificate alias, see also styles-ldrtl.xml -->
128    <style name="client_certificate_alias">
129        <item name="android:layout_alignParentLeft">true</item>
130        <item name="android:layout_toLeftOf">@id/select_button</item>
131    </style>
132
133    <!-- Quick response text -->
134    <style name="quick_response_text">
135        <item name="android:textSize">20sp</item>
136        <item name="android:textColor">@color/quick_response_text_color</item>
137    </style>
138
139    <style name="clear_authentication_button">
140        <item name="android:layout_marginLeft">8dp</item>
141    </style>
142</resources>
143
144
145
146