diff options
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> |