Skip to content

Commit

Permalink
Tweak buffer list's hot & warm buffer badges a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
oakkitten committed Nov 23, 2024
1 parent 97b5a9e commit 677aabc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/src/main/res/drawable/bg_bufferlist_item_hot.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="1dp" android:bottom="1dp">
<item android:top="0.666dp" android:bottom="1dp">
<shape android:shape="rectangle">
<corners android:radius="3dp" />
<corners android:radius="4dp" />
<solid android:color="@color/hotShade" />
</shape>
</item>
<item android:top="2dp">
<shape android:shape="rectangle">
<corners android:radius="3dp" />
<corners android:radius="4dp" />
<solid android:color="@color/hotBackground" />
</shape>
</item>
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/drawable/bg_bufferlist_item_warm.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="1dp" android:bottom="1dp">
<item android:top="0.666dp" android:bottom="1dp">
<shape android:shape="rectangle">
<corners android:radius="3dp" />
<corners android:radius="4dp" />
<solid android:color="@color/warmShade" />
</shape>
</item>
<item android:top="2dp" android:bottom="1dp">
<shape android:shape="rectangle">
<corners android:radius="3dp" />
<corners android:radius="4dp" />
<solid android:color="@color/warmBackground" />
<padding android:bottom="1dp" />
</shape>
Expand Down

0 comments on commit 677aabc

Please sign in to comment.