1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32

content / public / android / java / res / values / styles.xml [blame]

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2013 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<resources>
    <style name="SelectPopupDialog">
        <item name="select_dialog_singlechoice">@android:layout/select_dialog_singlechoice</item>
        <item name="select_dialog_multichoice">@android:layout/select_dialog_multichoice</item>
    </style>
    <style name="TextAppearance.SuggestionPrefixOrSuffix">
      <item name="android:textColor">?android:attr/textColorSecondary</item>
    </style>
    <style name="TextAppearance.TextSuggestionButton">
        <item name="android:drawablePadding">8dp</item>
        <item name="android:gravity">start|center_vertical</item>
        <item name="android:layout_gravity">start|center_vertical</item>
        <item name="android:layout_height">48dp</item>
        <item name="android:layout_width">match_parent</item>
        <item name="android:paddingBottom">8dp</item>
        <item name="android:paddingEnd">16dp</item>
        <item name="android:paddingStart">16dp</item>
        <item name="android:paddingTop">8dp</item>
        <item name="android:singleLine">true</item>
        <item name="android:textAppearance">@style/TextAppearance.TextSuggestionButtonText</item>
    </style>
    <style name="TextAppearance.TextSuggestionButtonText" parent="@style/TextAppearance.Button.Text.Blue">
        <item name="android:textColor">?android:attr/colorAccent</item>
    </style>
</resources>