mirror of
https://github.com/mihonapp/mihon.git
synced 2025-02-07 07:45:04 +01:00
* More themes cleanup * Tweak some things * Fix 'Clear History' icon * Split out ripple colored to its own drawable * Tidy up things * Unify background dim amount * Use primaryColor for Account login button * More colored ripples * use colorOnPrimary for selected comfortable library item title Co-authored-by: Soitora <simon.mattila@protonmail.com>
21 lines
726 B
XML
21 lines
726 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item
|
|
android:id="@+id/action_search"
|
|
android:icon="@drawable/ic_search_24dp"
|
|
android:title="@string/action_search"
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom|collapseActionView" />
|
|
|
|
<item
|
|
android:id="@+id/action_clear_history"
|
|
android:icon="@drawable/ic_delete_sweep_24dp"
|
|
android:title="@string/pref_clear_history"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
</menu>
|