diff options
| author | Lars <gc@droescher.eu> | 2014-07-13 00:06:29 +0200 |
|---|---|---|
| committer | Lars <gc@droescher.eu> | 2014-07-13 00:06:29 +0200 |
| commit | 4e9b7211f41fa421e2b4c2c05ab44ab4d4a44b90 (patch) | |
| tree | 66bfb99280045de21c44789b56d2e0bb14794d1a /main | |
| parent | c61ac87eb6a6fe7511ea11fd3d818eeb662c4e3b (diff) | |
| parent | 9eaba5a3c13332056218d28efaafba904ef37824 (diff) | |
| download | cgeo-4e9b7211f41fa421e2b4c2c05ab44ab4d4a44b90.zip cgeo-4e9b7211f41fa421e2b4c2c05ab44ab4d4a44b90.tar.gz cgeo-4e9b7211f41fa421e2b4c2c05ab44ab4d4a44b90.tar.bz2 | |
Merge pull request #4065 from schwabe/fix_4056
Use text_color_hint from dark/light theme instead of hardcoded dark them...
Diffstat (limited to 'main')
| -rw-r--r-- | main/res/layout/recaptcha_dialog.xml | 2 | ||||
| -rw-r--r-- | main/res/values/styles.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/res/layout/recaptcha_dialog.xml b/main/res/layout/recaptcha_dialog.xml index 3cae1fa..66ad4ef 100644 --- a/main/res/layout/recaptcha_dialog.xml +++ b/main/res/layout/recaptcha_dialog.xml @@ -43,7 +43,7 @@ android:layout_margin="7dip" android:paddingLeft="3dip" android:text="@string/caches_recaptcha_explanation" - android:textColor="@color/text_grey_dark" + android:textColor="?text_color_hint" android:textSize="12sp" /> </LinearLayout>
\ No newline at end of file diff --git a/main/res/values/styles.xml b/main/res/values/styles.xml index 6b12678..be1e1a4 100644 --- a/main/res/values/styles.xml +++ b/main/res/values/styles.xml @@ -130,7 +130,7 @@ <item name="android:layout_marginRight">10dip</item> <item name="android:layout_marginBottom">5dip</item> <item name="android:textColor">@color/text_dark</item> - <item name="android:textColorHint">@color/text_hint_dark</item> + <item name="android:textColorHint">?text_color_hint</item> <item name="android:background">@drawable/input_bcg_dark</item> </style> |
