Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 921d24a3 authored by Bryan Owens's avatar Bryan Owens Committed by Clark Scheff
Browse files

Themes: Expose hard code for themes



Signed-off-by: default avatarBryan Owens <djbryan3540@gmail.com>

Change-Id: I86ec4a3a3ce2eadaf36fe92440b43b8031247095
parent 84e9264f
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2015 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="?android:attr/colorAccent" />
</selector>
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@
        <View android:id="@+id/titleDivider"
            android:layout_width="match_parent"
            android:layout_height="2dip"
            android:background="@android:color/holo_blue_light" />
            android:background="@color/activity_list_divider_color" />
        <!-- If the client uses a customTitle, it will be added here. -->
    </LinearLayout>

+2 −2
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
            android:layout_width="match_parent"
            android:layout_height="2dip"
            android:visibility="gone"
            android:background="@android:color/holo_blue_light" />
            android:background="@color/dialog_divider_color" />
        <LinearLayout android:id="@+id/title_template"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
@@ -60,7 +60,7 @@
            android:layout_width="match_parent"
            android:layout_height="2dip"
            android:visibility="gone"
            android:background="@android:color/holo_blue_light" />
            android:background="@color/dialog_divider_color" />
        <!-- If the client uses a customTitle, it will be added here. -->
    </LinearLayout>

+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@
            android:id="@+id/perm_money_label"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textSize="16sp"
            android:textColor="@color/perms_costs_money"
            android:textColor="@color/perms_costs_money_text_color"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toEndOf="@id/perm_money_icon"
+1 −1
Original line number Diff line number Diff line
@@ -21,6 +21,6 @@
    android:focusable="false"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:background="@drawable/btn_keyboard_key_trans"
    android:textColor="#FFFFFFFF"
    android:textColor="@color/character_picker_button_text_color"
/>
Loading