2021-02-08 18:41:49 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-07-30 12:46:54 +02:00
|
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
2022-02-16 01:51:41 +01:00
|
|
|
<style name="SectionTitle" parent="TextAppearance.MaterialComponents.Headline6">
|
|
|
|
<item name="android:textSize">16sp</item>
|
|
|
|
</style>
|
|
|
|
|
2022-01-21 19:25:46 +01:00
|
|
|
<style name="ShapeAppearance.App.SmallComponent" parent="ShapeAppearance.MaterialComponents.SmallComponent">
|
|
|
|
<item name="cornerFamily">rounded</item>
|
|
|
|
<item name="cornerSize">@dimen/cornerRadius</item>
|
|
|
|
</style>
|
2020-04-18 23:40:18 +02:00
|
|
|
|
2022-01-21 19:25:46 +01:00
|
|
|
<style name="ShapeAppearance.App.MediumComponent" parent="ShapeAppearance.MaterialComponents.MediumComponent">
|
2021-02-08 18:41:49 +01:00
|
|
|
<item name="cornerFamily">rounded</item>
|
2022-01-21 19:25:46 +01:00
|
|
|
<item name="cornerSize">@dimen/cornerRadiusMedium</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<!-- android:elevation makes BottomSheetDialog background color brighter than it should be -->
|
|
|
|
<style name="ThemeOverlay.App.BottomSheetDialog" parent="ThemeOverlay.MaterialComponents.BottomSheetDialog">
|
|
|
|
<item name="bottomSheetStyle">@style/Widget.App.BottomSheet</item>
|
|
|
|
</style>
|
|
|
|
<style name="Widget.App.BottomSheet" parent="Widget.MaterialComponents.BottomSheet.Modal">
|
|
|
|
<item name="android:elevation">@null</item>
|
|
|
|
<item name="shapeAppearanceOverlay">@style/ShapeAppearance.App.BottomSheetDialog</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="ShapeAppearance.App.BottomSheetDialog" parent="">
|
|
|
|
<item name="cornerSizeTopLeft">@dimen/cornerRadiusMedium</item>
|
|
|
|
<item name="cornerSizeTopRight">@dimen/cornerRadiusMedium</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<!-- Workaround for AndroidX Preference as it doesn't use MaterialAlertDialogBuilder -->
|
|
|
|
<style name="ThemeOverlay.App.MaterialAlertDialog" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog">
|
|
|
|
<item name="android:dialogCornerRadius">@dimen/cornerRadiusMedium</item>
|
2019-12-10 21:51:02 +01:00
|
|
|
</style>
|
2020-04-18 23:40:18 +02:00
|
|
|
|
2021-02-08 18:41:49 +01:00
|
|
|
<style name="ChipChoice.Material">
|
2021-10-14 16:18:24 +02:00
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
2021-02-08 18:41:49 +01:00
|
|
|
<item name="colorOnPrimary">@color/colorPrimary</item>
|
|
|
|
</style>
|
2020-04-18 23:40:18 +02:00
|
|
|
|
2021-02-08 18:41:49 +01:00
|
|
|
<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>
|
2020-03-30 21:39:21 +02:00
|
|
|
</style>
|
2022-07-30 12:46:54 +02:00
|
|
|
|
|
|
|
<style name="Widget.App.OutlinedCard" parent="Widget.MaterialComponents.CardView">
|
|
|
|
<item name="cardBackgroundColor">@android:color/transparent</item>
|
|
|
|
<item name="cardElevation">0dp</item>
|
|
|
|
<item name="strokeColor" tools:ignore="PrivateResource">@color/mtrl_btn_stroke_color_selector</item>
|
|
|
|
<item name="strokeWidth">1dp</item>
|
|
|
|
<item name="android:clickable">true</item>
|
|
|
|
</style>
|
2019-06-29 02:35:14 +02:00
|
|
|
</resources>
|