mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
<?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>
|