Light icon buttons are colour background with white text again. It just looks nice.
This commit is contained in:
parent
1f798902b7
commit
eed3f2d899
@ -506,8 +506,7 @@ public class ComposeActivity extends BaseActivity {
|
||||
}
|
||||
case "private": {
|
||||
floatingBtn.setText(R.string.action_send);
|
||||
Drawable lock = ThemeUtils.getDrawable(this, R.attr.compose_send_private_drawable,
|
||||
R.drawable.send_private_dark);
|
||||
Drawable lock = ContextCompat.getDrawable(this, R.drawable.send_private);
|
||||
lock.setBounds(0, 0, lock.getIntrinsicWidth(), lock.getIntrinsicHeight());
|
||||
floatingBtn.setCompoundDrawables(null, null, lock, null);
|
||||
break;
|
||||
|
@ -1,9 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="@color/text_color_primary_light"
|
||||
android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM15.1,8L8.9,8L8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2z"/>
|
||||
</vector>
|
@ -127,7 +127,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:text="@string/action_send" />
|
||||
android:text="@string/action_send"
|
||||
android:textColor="@android:color/white" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
|
@ -37,6 +37,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:elevation="0dp"
|
||||
android:textColor="@android:color/white"
|
||||
android:text="@string/action_login" />
|
||||
|
||||
<TextView
|
||||
|
@ -35,7 +35,6 @@
|
||||
<attr name="compose_media_button_disabled_tint" format="reference|color" />
|
||||
<attr name="compose_mention_color" format="reference|color" />
|
||||
<attr name="compose_content_warning_bar_background" format="reference" />
|
||||
<attr name="compose_send_private_drawable" format="reference" />
|
||||
<attr name="compose_nsfw_button_color" format="reference|color" />
|
||||
<attr name="compose_nsfw_button_selected_color" format="reference|color" />
|
||||
<attr name="report_status_background_color" format="reference|color" />
|
||||
|
@ -60,7 +60,6 @@
|
||||
<item name="compose_media_button_disabled_tint">@color/compose_media_button_disabled_dark</item>
|
||||
<item name="compose_mention_color">@color/color_accent_dark</item>
|
||||
<item name="compose_content_warning_bar_background">@drawable/border_background_dark</item>
|
||||
<item name="compose_send_private_drawable">@drawable/send_private_dark</item>
|
||||
<item name="compose_nsfw_button_color">@color/image_button_dark</item>
|
||||
<item name="compose_nsfw_button_selected_color">@color/color_accent_dark</item>
|
||||
<item name="report_status_background_color">@color/color_background_dark</item>
|
||||
@ -147,7 +146,6 @@
|
||||
<item name="compose_media_button_disabled_tint">@color/compose_media_button_disabled_light</item>
|
||||
<item name="compose_mention_color">@color/compose_mention_light</item>
|
||||
<item name="compose_content_warning_bar_background">@drawable/border_background_light</item>
|
||||
<item name="compose_send_private_drawable">@drawable/send_private_light</item>
|
||||
<item name="compose_nsfw_button_color">@color/image_button_light</item>
|
||||
<item name="compose_nsfw_button_selected_color">@color/color_accent_light</item>
|
||||
<item name="report_status_background_color">@color/report_status_background_light</item>
|
||||
|
Loading…
Reference in New Issue
Block a user