summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorMichael Kolb <kolby@google.com>2011-01-25 17:31:33 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-25 17:31:33 -0800
commitfaed50f83f02a7251e79941f2a3daa3e0dc19f9a (patch)
tree2341a662d085c9e6d44fe6152542302895649673 /res
parent8938c50be58d314204487303b20ef14babd09bb9 (diff)
parent70a0ed41cc30419d2dded692cf1fa61a84817ac8 (diff)
downloadpackages_apps_Browser-faed50f83f02a7251e79941f2a3daa3e0dc19f9a.zip
packages_apps_Browser-faed50f83f02a7251e79941f2a3daa3e0dc19f9a.tar.gz
packages_apps_Browser-faed50f83f02a7251e79941f2a3daa3e0dc19f9a.tar.bz2
am 70a0ed41: am 49f1583a: fix tab title
* commit '70a0ed41cc30419d2dded692cf1fa61a84817ac8': fix tab title
Diffstat (limited to 'res')
-rw-r--r--res/layout/tab_title.xml18
-rw-r--r--res/values/colors.xml1
-rw-r--r--res/values/dimensions.xml1
3 files changed, 10 insertions, 10 deletions
diff --git a/res/layout/tab_title.xml b/res/layout/tab_title.xml
index 62ef2f3..e2c6d0a 100644
--- a/res/layout/tab_title.xml
+++ b/res/layout/tab_title.xml
@@ -18,17 +18,15 @@
android:orientation="horizontal">
<ImageView
android:id="@+id/chevron"
- android:layout_width="16dip"
- android:layout_height="16dip"
- android:layout_marginRight="4dip"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
android:gravity="center_vertical"
android:src="@drawable/ic_chevron"
android:visibility="gone" />
<ImageView
android:id="@+id/incognito"
- android:layout_width="32dip"
- android:layout_height="32dip"
- android:layout_marginRight="8dip"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
android:gravity="center_vertical"
android:src="@drawable/ic_incognito_holo_dark"
android:visibility="gone" />
@@ -36,19 +34,20 @@
android:id="@+id/favicon"
android:layout_width="20dip"
android:layout_height="20dip"
- android:layout_marginRight="16dip" />
+ android:layout_marginLeft="8dip"
+ android:layout_marginRight="8dip" />
<ImageView
android:id="@+id/lock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginRight="16dip"
android:visibility="gone" />
<TextView
android:id="@+id/title"
android:layout_height="match_parent"
android:layout_width="0dip"
android:layout_weight="1.0"
- android:layout_marginRight="16dip"
+ android:paddingLeft="8dip"
+ android:paddingRight="8dip"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/white"
android:gravity="center_vertical"
@@ -60,6 +59,5 @@
android:background="?android:attr/selectableItemBackground"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginRight="16dip"
android:src="@drawable/ic_tab_close" />
</merge>
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 84e5348..68b58f7 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -34,4 +34,5 @@
<color name="bookmarkWidgetFaviconBackground">#23ffffff</color>
<color name="bookmarkListFaviconBackground">#23ffffff</color>
<color name="urlTextColor">#0E774A</color>
+ <color name="tabFaviconBackground">#FF555555</color>
</resources>
diff --git a/res/values/dimensions.xml b/res/values/dimensions.xml
index d738288..b1e1d92 100644
--- a/res/values/dimensions.xml
+++ b/res/values/dimensions.xml
@@ -43,4 +43,5 @@
<dimen name="tab_first_padding_left">12dp</dimen>
<dimen name="list_favicon_padding">5dip</dimen>
<dimen name="list_favicon_corner_radius">3dip</dimen>
+ <dimen name="tab_favicon_corner_radius">2dip</dimen>
</resources>