summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
authorPhilip P. Moltmann <moltmann@google.com>2016-04-06 16:12:01 -0700
committerPhilip P. Moltmann <moltmann@google.com>2016-04-07 17:28:16 -0700
commitdb783edf34ff3d228b9a5d5b14b0bf1e966ebd34 (patch)
tree9321114b48e9c2ca3563a1db54a35e24b4c47ae7 /res/values
parent0a25ee021bd0a68c59c0d4b5e2352c4cb2fdea83 (diff)
downloadandroid_packages_apps_PackageInstaller-db783edf34ff3d228b9a5d5b14b0bf1e966ebd34.tar.gz
android_packages_apps_PackageInstaller-db783edf34ff3d228b9a5d5b14b0bf1e966ebd34.tar.bz2
android_packages_apps_PackageInstaller-db783edf34ff3d228b9a5d5b14b0bf1e966ebd34.zip
Make side-load install path material design-y
Bug: 26932948 Change-Id: Ic8bcec523fc6cd0db847a4575724fbe465e65c5d
Diffstat (limited to 'res/values')
-rwxr-xr-xres/values/styles.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 7f6a4693..c69558b6 100755
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -17,7 +17,26 @@
<resources>
<style name="Theme.DialogWhenLarge"
- parent="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge.NoActionBar">
+ parent="@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar">
+ <item name="android:textAppearanceMedium">@style/MediumText</item>
+ <item name="android:textAppearanceSmall">@style/SmallText</item>
+ <item name="android:titleTextStyle">@style/TitleText</item>
+ </style>
+
+ <style name="MediumText"
+ parent="@android:style/TextAppearance.Medium">
+ <item name="android:textColor">?android:attr/textColorPrimary</item>
+ </style>
+
+ <style name="SmallText"
+ parent="@android:style/TextAppearance.Small">
+ <item name="android:textColor">?android:attr/textColorPrimary</item>
+ </style>
+
+ <style name="TitleText">
+ <item name="android:fontFamily">sans-serif-medium</item>
+ <item name="android:textSize">20dp</item>
+ <item name="android:textColor">?android:attr/textColorPrimary</item>
</style>
<style name="Theme.AlertDialogActivity"