mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-25 13:18:06 +03:00
36a1f2a2ec
We wanted the color of the modals used by the dialogs to be the same as our regular background color rather than a lighter grey. This has now been enforced with style attributes in the case of `AlertDialog` and `setBackground` in the case of `BottomSheetDialog`.
22 lines
799 B
XML
22 lines
799 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<style name="RoundedAppImage">
|
|
<item name="cornerFamily">rounded</item>
|
|
<item name="cornerSize">6dp</item>
|
|
</style>
|
|
|
|
<style name="ChipChoice.Material">
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
<item name="colorOnPrimary">@color/colorPrimary</item>
|
|
</style>
|
|
|
|
<style name="ChipChoice" parent="Widget.MaterialComponents.Chip.Choice">
|
|
<item name="android:textAllCaps">true</item>
|
|
<item name="chipStartPadding">8dp</item>
|
|
<item name="chipEndPadding">8dp</item>
|
|
<item name="materialThemeOverlay">@style/ChipChoice.Material</item>
|
|
<item name="shapeAppearance">@style/ShapeAppearance.MaterialComponents.LargeComponent</item>
|
|
</style>
|
|
</resources>
|