Home | History | Annotate | Download | only in values
      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:background">@android:color/transparent</item>
     63     </style>
     64 
     65     <!-- Cancel/Done buttons on the account settings (server settings) fragments -->
     66     <style name="account_settings_button">
     67         <item name="android:layout_width">@dimen/setup_text_button_width</item>
     68         <item name="android:layout_height">48sp</item>
     69         <item name="android:textColor">?android:attr/textColorPrimary</item>
     70         <item name="android:textSize">@dimen/setup_text_button_text_size</item>
     71     </style>
     72 
     73     <!-- Info text in any account setup screen -->
     74     <style name="account_setup_info_text">
     75         <item name="android:textSize">20sp</item>
     76         <item name="android:textColor">@color/account_setup_info_text_color</item>
     77         <item name="android:fontFamily">sans-serif-thin</item>
     78         <item name="android:layout_marginBottom">@dimen/setup_info_text_margin_bottom</item>
     79     </style>
     80 
     81     <style name="account_setup_manual_button">
     82         <item name="android:textSize">16sp</item>
     83         <item name="android:textColor">@color/account_setup_manual_button_color</item>
     84         <item name="android:alpha">0.4</item>
     85     </style>
     86 
     87     <!-- Account setup row label text -->
     88     <style name="account_setup_label_text">
     89         <item name="android:textColor">?android:attr/textColorPrimary</item>
     90         <item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
     91         <item name="android:paddingTop">@dimen/setup_label_text_padding_top</item>
     92     </style>
     93 
     94     <!-- Account setup row label large text -->
     95     <style name="account_setup_label_large_text">
     96         <item name="android:textSize">20sp</item>
     97         <item name="android:textColor">@color/account_setup_label_large_text_color</item>
     98         <item name="android:fontFamily">sans-serif-thin</item>
     99         <item name="android:layout_marginBottom">@dimen/setup_label_large_text_margin_bottom</item>
    100     </style>
    101 
    102     <!-- Account setup checkboxes -->
    103     <style name="account_setup_checkbox">
    104         <item name="android:layout_marginTop">@dimen/setup_checkbox_margin_top</item>
    105         <item name="android:layout_marginBottom">@dimen/setup_checkbox_margin_bottom</item>
    106         <item name="android:layout_marginLeft">@dimen/setup_checkbox_margin_side</item>
    107         <item name="android:layout_marginRight">@dimen/setup_checkbox_margin_side</item>
    108     </style>
    109 
    110     <!-- Client certificate UI. See also values in styles-ldrtl.xml -->
    111     <!-- Client certificate 'select' button, see also styles-ldrtl.xml -->
    112     <style name="client_certificate_button"
    113            parent="account_setup_text_button">
    114         <item name="android:layout_alignParentRight">true</item>
    115         <item name="android:paddingLeft">20dp</item>
    116         <item name="android:paddingRight">20dp</item>
    117    </style>
    118 
    119     <!-- Client certificate title, see also styles-ldrtl.xml -->
    120     <style name="client_certificate_title">
    121         <item name="android:layout_alignParentLeft">true</item>
    122         <item name="android:layout_toLeftOf">@id/select_button</item>
    123     </style>
    124 
    125     <!-- Client certificate alias, see also styles-ldrtl.xml -->
    126     <style name="client_certificate_alias">
    127         <item name="android:layout_alignParentLeft">true</item>
    128         <item name="android:layout_toLeftOf">@id/select_button</item>
    129     </style>
    130 
    131     <!-- Quick response text -->
    132     <style name="quick_response_text">
    133         <item name="android:textSize">20sp</item>
    134         <item name="android:textColor">@color/quick_response_text_color</item>
    135     </style>
    136 
    137     <style name="clear_authentication_button">
    138         <item name="android:layout_marginLeft">8dp</item>
    139     </style>
    140 </resources>
    141 
    142 
    143 
    144