* Use light/dark mode colors for image description text This is an accessibility issue -- in light mode (which should have dark text on a light background) the text color was hardcoded to light grey and the background color was a semi-transparent black. Fixes https://github.com/tuskyapp/Tusky/issues/2983. * Update app/src/main/res/drawable/ic_drag_indicator_horiz_24dp.xml Co-authored-by: Konrad Pozniak <connyduck@users.noreply.github.com> Co-authored-by: Konrad Pozniak <connyduck@users.noreply.github.com>
10 lines
No EOL
338 B
XML
10 lines
No EOL
338 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<corners
|
|
android:topLeftRadius="6dp"
|
|
android:topRightRadius="6dp" />
|
|
<stroke
|
|
android:color="?attr/colorOutline"
|
|
android:width="1dp" />
|
|
<solid android:color="?attr/colorSurface" />
|
|
</shape> |