|
15 | 15 | <item name="android:textColorSecondary">@color/textColorSecondary</item>
|
16 | 16 | <item name="android:colorBackground">@color/backgroundColorPrimary</item>
|
17 | 17 | <item name="android:navigationBarColor">@color/navigationBarColor</item>
|
| 18 | + <item name="materialAlertDialogTheme">@style/AlertDialogTheme</item> |
18 | 19 | <item name="textAppearanceButton">@style/ButtonTextAppearance</item>
|
19 | 20 | </style>
|
20 | 21 |
|
21 | 22 | <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.MaterialComponents.Dark.ActionBar" />
|
22 | 23 |
|
23 | 24 | <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.MaterialComponents.Light" />
|
24 | 25 |
|
| 26 | + <style name="AlertDialogTheme" parent="ThemeOverlay.MaterialComponents.Dialog.Alert"> |
| 27 | + <item name="buttonBarNeutralButtonStyle">@style/NeutralButtonStyle</item> |
| 28 | + <item name="buttonBarNegativeButtonStyle">@style/NegativeButtonStyle</item> |
| 29 | + <item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item> |
| 30 | + </style> |
| 31 | + |
| 32 | + <style name="NeutralButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog"> |
| 33 | + <item name="android:textColor">@color/textColorSecondary</item> |
| 34 | + </style> |
| 35 | + |
| 36 | + <style name="NegativeButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog"> |
| 37 | + <item name="android:textColor">@color/textColorSecondary</item> |
| 38 | + </style> |
| 39 | + |
| 40 | + <style name="PositiveButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog"> |
| 41 | + <item name="android:textColor">@color/textColorSecondary</item> |
| 42 | + </style> |
| 43 | + |
25 | 44 | <style name="Widget.CardContent" parent="android:Widget">
|
26 | 45 | <item name="android:paddingLeft">16dp</item>
|
27 | 46 | <item name="android:paddingRight">16dp</item>
|
|
55 | 74 | <style name="ButtonTextAppearance" parent="TextAppearance.MaterialComponents.Button">
|
56 | 75 | <item name="android:letterSpacing">0</item>
|
57 | 76 | </style>
|
| 77 | + |
| 78 | + <style name="TextButton" parent="Widget.MaterialComponents.Button.TextButton"> |
| 79 | + <item name="android:textColor">@color/textColorSecondary</item> |
| 80 | + </style> |
58 | 81 | </resources>
|
0 commit comments