mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6a35499ad9
--HG-- rename : mobile/android/base/resources/drawable/address_bar_back_button.xml => mobile/android/base/resources/drawable/address_bar_nav_button.xml.in extra : rebase_source : 402a8d8202172a3480b8a10bd1e36ba107b9340b
20 lines
762 B
XML
20 lines
762 B
XML
#filter substitution
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gecko="http://schemas.android.com/apk/res/@ANDROID_PACKAGE_NAME@">
|
|
|
|
<!-- pressed state -->
|
|
<item android:state_pressed="true" android:drawable="@drawable/highlight"/>
|
|
|
|
<!-- private browsing mode -->
|
|
<item gecko:state_private="true" android:drawable="@drawable/address_bar_bg_private"/>
|
|
|
|
<!-- normal mode -->
|
|
<item android:drawable="@drawable/address_bar_bg_normal"/>
|
|
|
|
</selector>
|