2019-09-24 20:29:35 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
These widgets are implementation of corresponding attribute. Never and I mean fucking never! use
|
|
|
|
these directly.
|
|
|
|
|
|
|
|
Although it is possible, it wouldn't automatically change the style when theme changes to "night"
|
|
|
|
variant. Make sure to use style referenced by attribute defined it attrs.xml.
|
|
|
|
-->
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Appbar" parent="Widget.MaterialComponents.AppBarLayout.Surface">
|
|
|
|
<item name="elevation">0dp</item>
|
2019-10-05 22:51:21 +02:00
|
|
|
<item name="android:background">?colorSurfaceVariant</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Toolbar" parent="Widget.MaterialComponents.Toolbar.Surface">
|
2019-10-03 18:41:04 +02:00
|
|
|
<item name="titleTextAppearance">?appearanceTextTitleNormal</item>
|
|
|
|
<item name="titleTextColor">?colorOnSurface</item>
|
|
|
|
<item name="subtitleTextAppearance">?appearanceTextCaptionNormal</item>
|
|
|
|
<item name="subtitleTextColor">?colorOnSurfaceVariant</item>
|
|
|
|
<item name="android:background">@android:color/transparent</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
<item name="contentInsetStartWithNavigation">0dp</item>
|
2019-10-05 22:51:21 +02:00
|
|
|
<item name="android:layout_height">?actionBarSize</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Card" parent="Widget.MaterialComponents.CardView">
|
2019-10-05 12:42:27 +02:00
|
|
|
<item name="cardBackgroundColor">?colorSurfaceVariant</item>
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="cardCornerRadius">@dimen/l_50</item>
|
2019-10-05 12:42:27 +02:00
|
|
|
<item name="cardElevation">0dp</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Card.OnPrimary" parent="Widget.MaterialComponents.CardView">
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="cardCornerRadius">@dimen/l_50</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
<item name="cardElevation">0dp</item>
|
2019-10-05 12:42:27 +02:00
|
|
|
<item name="strokeColor">?colorOnPrimaryVariant</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
<item name="strokeWidth">1dp</item>
|
2019-10-05 12:42:27 +02:00
|
|
|
<item name="cardBackgroundColor">?colorPrimary</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Button" parent="Widget.MaterialComponents.Button">
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="android:textStyle">bold</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Button.Flat" parent="Widget.MaterialComponents.Button.UnelevatedButton">
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="android:textStyle">bold</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Button.Text" parent="Widget.MaterialComponents.Button.TextButton">
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="android:textStyle">bold</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Button.Error" parent="WidgetFoundation.Button.Text">
|
|
|
|
<item name="rippleColor">?colorError</item>
|
|
|
|
<item name="android:textColor">?colorError</item>
|
|
|
|
<item name="iconTint">?colorError</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
2019-10-02 18:15:16 +02:00
|
|
|
<style name="WidgetFoundation.Image">
|
|
|
|
<item name="android:layout_width">32dp</item>
|
|
|
|
<item name="android:layout_height">32dp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Image.Big">
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="android:layout_width">48dp</item>
|
|
|
|
<item name="android:layout_height">48dp</item>
|
2019-10-02 18:15:16 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Image.Small">
|
|
|
|
<item name="android:layout_width">24dp</item>
|
|
|
|
<item name="android:layout_height">24dp</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Icon" parent="WidgetFoundation.Image.Big">
|
2019-09-30 19:37:57 +02:00
|
|
|
<item name="android:padding">@dimen/l_75</item>
|
|
|
|
<item name="android:background">?selectableItemBackgroundBorderless</item>
|
|
|
|
<item name="tint">?colorTextTransient</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="WidgetFoundation.Icon.Primary">
|
|
|
|
<item name="tint">?colorPrimaryTransient</item>
|
|
|
|
</style>
|
2019-09-24 20:29:35 +02:00
|
|
|
|
2019-09-30 19:37:57 +02:00
|
|
|
<style name="WidgetFoundation.Icon.Error">
|
|
|
|
<item name="tint">?colorErrorTransient</item>
|
2019-09-24 20:29:35 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
</resources>
|