diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /mobile/android/base/resources/values-v19 | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'mobile/android/base/resources/values-v19')
-rw-r--r-- | mobile/android/base/resources/values-v19/dimens.xml | 8 | ||||
-rw-r--r-- | mobile/android/base/resources/values-v19/styles.xml | 41 |
2 files changed, 49 insertions, 0 deletions
diff --git a/mobile/android/base/resources/values-v19/dimens.xml b/mobile/android/base/resources/values-v19/dimens.xml new file mode 100644 index 000000000..e2c964d82 --- /dev/null +++ b/mobile/android/base/resources/values-v19/dimens.xml @@ -0,0 +1,8 @@ +<?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/. --> + +<resources> + <dimen name="toast_button_corner_radius">24dp</dimen> +</resources> diff --git a/mobile/android/base/resources/values-v19/styles.xml b/mobile/android/base/resources/values-v19/styles.xml new file mode 100644 index 000000000..6114c8229 --- /dev/null +++ b/mobile/android/base/resources/values-v19/styles.xml @@ -0,0 +1,41 @@ +<?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/. --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android"> + + <style name="Toast" parent="ToastBase"> + <item name="android:layout_marginLeft">8dp</item> + <item name="android:layout_marginRight">8dp</item> + </style> + + <style name="ToastElementBase"> + <item name="android:background">@null</item> + <item name="android:paddingLeft">24dp</item> + <item name="android:paddingRight">24dp</item> + <item name="android:paddingTop">11dp</item> + <item name="android:paddingBottom">11dp</item> + </style> + + <style name="ToastDivider" parent="ToastDividerBase"> + <item name="android:layout_marginTop">12dp</item> + <item name="android:layout_marginBottom">12dp</item> + </style> + + <style name="ToastMessage" parent="ToastMessageBase"> + <item name="android:textSize">16sp</item> + <item name="android:fontFamily">sans-serif-condensed</item> + <item name="android:shadowColor">#BB000000</item> + <item name="android:shadowRadius">2.75</item> + </style> + + <style name="ToastButton" parent="ToastButtonBase"> + <item name="android:textSize">12sp</item> + <item name="android:textStyle">bold</item> + <item name="android:fontFamily">sans-serif-condensed</item> + <item name="android:shadowColor">#BB000000</item> + <item name="android:shadowRadius">2.75</item> + </style> + +</resources> |