mirror of
https://codeberg.org/gitnex/GitNex.git
synced 2024-12-16 15:48:13 +08:00
Fix divider color in themes
This commit is contained in:
parent
8df11645e8
commit
6cb06d918d
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user