Merge "Changed color/font of view all contacts text. Removed whitespace. Added font family string to values and bolded text. Added do not translate to font string. Bug: 13936108"
diff --git a/res/layout/recents_list_footer.xml b/res/layout/recents_list_footer.xml
index 48c0f36..6156456 100644
--- a/res/layout/recents_list_footer.xml
+++ b/res/layout/recents_list_footer.xml
@@ -25,7 +25,9 @@
     android:paddingTop="20dp"
     android:paddingBottom="20dp"
     android:gravity="center"
-    android:textColor="@color/dialtacts_primary_text_color"
+    android:fontFamily="@string/view_full_call_history_font_family"
+    android:textStyle="bold"
+    android:textColor="@color/view_full_call_history_color"
     android:textSize="14sp"
     android:text="@string/recents_footer_text"
-    android:background="?android:attr/selectableItemBackground" />
\ No newline at end of file
+    android:background="?android:attr/selectableItemBackground" />
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 2d3fd17..5b708b6 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -83,6 +83,9 @@
          as call back, play voicemail, etc. -->
     <color name="call_log_action_text">#1dc7db</color>
 
+    <!-- Color of view full call history item text. -->
+    <color name="view_full_call_history_color">#1dc7db</color>
+
     <!-- Color for missed call icons. -->
     <color name="missed_call">#ff2e58</color>
 
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 26ff1a7..0cf4e25 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -545,6 +545,10 @@
          Do not translate. -->
     <string name="call_log_activity_title_font_family">sans-serif-light</string>
 
+    <!-- String resource for the font-family to use for the full call history footer
+         Do not translate. -->
+    <string name="view_full_call_history_font_family">sans-serif</string>
+
     <!-- Text displayed when the list of missed calls is empty -->
     <string name="recentMissed_empty">No recent missed calls.</string>