mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
932c92412c
* 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>
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
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_web_back"
|
|
android:icon="@drawable/ic_arrow_back_24dp"
|
|
android:title="@string/action_webview_back"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_web_forward"
|
|
android:icon="@drawable/ic_arrow_forward_24dp"
|
|
android:title="@string/action_webview_forward"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_web_refresh"
|
|
android:title="@string/action_webview_refresh"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/action_web_share"
|
|
android:title="@string/action_share"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/action_web_browser"
|
|
android:title="@string/action_open_in_browser"
|
|
app:showAsAction="never" />
|
|
|
|
</menu>
|