aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res
diff options
context:
space:
mode:
authorThialfihar <thi@thialfihar.org>2015-06-26 13:25:30 +0200
committerThialfihar <thi@thialfihar.org>2015-07-21 20:56:41 +0200
commitd8d0030c0b30807378325bde21d00c24a111fedb (patch)
tree398cc0157d13ba89695c44a429948441377ddd18 /OpenKeychain/src/main/res
parentb60842a35b95c6eb4da5cab55a4529d6001c4908 (diff)
downloadopen-keychain-d8d0030c0b30807378325bde21d00c24a111fedb.tar.gz
open-keychain-d8d0030c0b30807378325bde21d00c24a111fedb.tar.bz2
open-keychain-d8d0030c0b30807378325bde21d00c24a111fedb.zip
Make help pages work in dark theme
This maintains the black-on-white theme of the HTML views even for the dark theme.
Diffstat (limited to 'OpenKeychain/src/main/res')
-rw-r--r--OpenKeychain/src/main/res/layout/help_about_fragment.xml13
1 files changed, 11 insertions, 2 deletions
diff --git a/OpenKeychain/src/main/res/layout/help_about_fragment.xml b/OpenKeychain/src/main/res/layout/help_about_fragment.xml
index 6afab2e12..f654af181 100644
--- a/OpenKeychain/src/main/res/layout/help_about_fragment.xml
+++ b/OpenKeychain/src/main/res/layout/help_about_fragment.xml
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
- android:layout_height="match_parent" >
+ android:layout_height="match_parent"
+ android:paddingLeft="0dp"
+ android:paddingRight="0dp"
+ android:paddingTop="0dp"
+ android:paddingBottom="0dp">
<LinearLayout
android:layout_width="match_parent"
@@ -56,7 +60,12 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
+ android:paddingLeft="16dp"
+ android:paddingRight="16dp"
+ android:paddingTop="16dp"
+ android:paddingBottom="16dp"
+ android:background="@android:color/white"
android:textAppearance="@android:style/TextAppearance.Small" />
</LinearLayout>
-</ScrollView> \ No newline at end of file
+</ScrollView>