-
Notifications
You must be signed in to change notification settings - Fork 223
/
styles.xml
21 lines (19 loc) · 911 Bytes
/
styles.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="rtl_RecyclerTabLayout">
<item name="rtl_tabMinWidth">72dp</item>
<item name="rtl_tabMaxWidth">264dp</item>
<item name="rtl_tabIndicatorColor">?attr/colorAccent</item>
<item name="rtl_tabIndicatorHeight">2dp</item>
<item name="rtl_tabPaddingStart">12dp</item>
<item name="rtl_tabPaddingEnd">12dp</item>
<item name="rtl_tabBackground">?attr/selectableItemBackground</item>
<item name="rtl_tabTextAppearance">@style/rtl_RecyclerTabLayout.Tab</item>
<item name="rtl_tabSelectedTextColor">?android:textColorPrimary</item>
</style>
<style name="rtl_RecyclerTabLayout.Tab">
<item name="android:textSize">14sp</item>
<item name="android:textColor">?android:textColorSecondary</item>
<item name="textAllCaps">true</item>
</style>
</resources>