mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fix button size and styles on reading view and profile view.
This commit is contained in:
parent
d5d6ad224e
commit
31953cb984
3 changed files with 1 additions and 25 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/profile_unfollow_button"
|
||||
android:layout_width="70dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/description_follow_button"
|
||||
android:text="@string/profile_button_unfollow"
|
||||
|
|
|
@ -2,10 +2,8 @@
|
|||
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<Button
|
||||
android:id="@+id/share_story_button"
|
||||
style="@style/shareButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_marginRight="20dp"
|
||||
|
@ -14,10 +12,8 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/save_story_button"
|
||||
style="@style/saveButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_marginRight="20dp"
|
||||
|
|
|
@ -1,26 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<style name="shareButton" parent="@android:style/Widget.Button">
|
||||
<item name="android:textStyle">normal</item>
|
||||
<item name="android:shadowDx">0</item>
|
||||
<item name="android:shadowDy">0</item>
|
||||
<item name="android:shadowRadius">5</item>
|
||||
<item name="android:shadowColor">#003366</item>
|
||||
<item name="android:textSize">16sp</item>
|
||||
<item name="android:padding">10dp</item>
|
||||
</style>
|
||||
|
||||
<style name="saveButton" parent="@android:style/Widget.Button">
|
||||
<item name="android:textStyle">normal</item>
|
||||
<item name="android:shadowDx">0</item>
|
||||
<item name="android:shadowDy">0</item>
|
||||
<item name="android:shadowRadius">5</item>
|
||||
<item name="android:shadowColor">#003366</item>
|
||||
<item name="android:textSize">16sp</item>
|
||||
<item name="android:padding">10dp</item>
|
||||
</style>
|
||||
|
||||
<style name="dialog" parent="@android:style/Theme.Dialog">
|
||||
<item name="android:background">@drawable/actionbar_background</item>
|
||||
<item name="android:textColor">@color/darkgray</item>
|
||||
|
|
Loading…
Add table
Reference in a new issue