Merge pull request 'Fix divider color in themes' (#293) from fix-divider-color-in-themes into master

Reviewed-on: https://gitea.com/gitnex/GitNex/pulls/293
This commit is contained in:
M M Arif 2020-03-16 20:11:03 +00:00
commit da16439975
3 changed files with 5 additions and 5 deletions

View File

@ -66,7 +66,7 @@
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="16dp"
android:background="@color/dividerColor" />
android:background="?attr/dividerColor" />
</LinearLayout>

View File

@ -28,12 +28,12 @@
<color name="lightDimGreen">#63fdd9</color>
<color name="diffRemovedColor">#ffe0e0</color>
<color name="diffAddedColor">#d6fcd6</color>
<color name="dividerColorDark">#1d1d1d</color>
<color name="lightThemeTextColor">#646565</color>
<color name="lightThemeBackground">#f9f9f9</color>
<color name="lightThemeInputBackground">#b6bbbf</color>
<color name="lightThemeInputTextColor">#212121</color>
<color name="dividerColor">#dbdbdb</color>
<color name="lightThemeDividerColor">#dbdbdb</color>
</resources>

View File

@ -19,7 +19,7 @@
<item name="autoCompleteTextViewStyle">@style/AppThemeDarkSearchAutoCompleteTextView</item>
<item name="hintColor">@color/hintColor</item>
<item name="colorControlActivated">@color/darkGreen</item>
<item name="dividerColor">@color/dividerColor</item>
<item name="dividerColor">@color/dividerColorDark</item>
</style>
<!-- Dark theme - default -->
@ -41,7 +41,7 @@
<item name="autoCompleteTextViewStyle">@style/AppThemeLightSearchAutoCompleteTextView</item>
<item name="hintColor">@color/hintColor</item>
<item name="colorControlActivated">@color/darkGreen</item>
<item name="dividerColor">@color/dividerColor</item>
<item name="dividerColor">@color/lightThemeDividerColor</item>
</style>
<!-- Light theme -->