mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
2877f17d05
in light mode, input field and emoji popups are both white, therefore opening the emoji popup (used eg. for diversified emojis) in the first line looks weird, you do not really know if the display is part of the emoji picker or of the input field. fixing that by adding a small border around the popup. in dark mode, things are already fine.
11 lines
302 B
XML
11 lines
302 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
|
|
<corners android:radius="5dp" />
|
|
<stroke android:width="1dp" android:color="@color/grey_400"/>
|
|
<solid android:color="@color/core_white" />
|
|
|
|
</shape>
|