diff options
author | asdoi <36813904+asdoi@users.noreply.github.com> | 2021-01-21 18:37:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 18:37:04 +0100 |
commit | 2a8abb02f616572722240f2f9fd91c871d54e854 (patch) | |
tree | 95a90a9d28e0fa3f231e4815d66dba98257df78b /core/src/main | |
parent | 86bf6a50f3c60e22125e0ba12c4db83b85706387 (diff) | |
download | AntennaPod-2a8abb02f616572722240f2f9fd91c871d54e854.zip |
Add scrubbing time overlay (#4786)
Diffstat (limited to 'core/src/main')
-rw-r--r-- | core/src/main/res/values/attrs.xml | 1 | ||||
-rw-r--r-- | core/src/main/res/values/colors.xml | 2 | ||||
-rw-r--r-- | core/src/main/res/values/styles.xml | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/core/src/main/res/values/attrs.xml b/core/src/main/res/values/attrs.xml index a6879b006..cceacf99e 100644 --- a/core/src/main/res/values/attrs.xml +++ b/core/src/main/res/values/attrs.xml @@ -62,6 +62,7 @@ <attr name="filter_dialog_clear" format="color"/> <attr name="filter_dialog_button_background" format="reference"/> <attr name="ic_notifications" format="reference"/> + <attr name="seek_background" format="color" /> <attr name="ic_share" format="reference"/> <declare-styleable name="SquareImageView"> diff --git a/core/src/main/res/values/colors.xml b/core/src/main/res/values/colors.xml index feee88bb4..fc2409e11 100644 --- a/core/src/main/res/values/colors.xml +++ b/core/src/main/res/values/colors.xml @@ -22,6 +22,8 @@ <color name="highlight_dark">#43707070</color> <color name="highlight_trueblack">#43707070</color> <color name="non_square_icon_background">#22777777</color> + <color name="seek_background_light">#90000000</color> + <color name="seek_background_dark">#905B5B5B</color> <color name="accent_light">#0078C2</color> <color name="accent_dark">#3D8BFF</color> diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml index 43e3823c5..533fa8420 100644 --- a/core/src/main/res/values/styles.xml +++ b/core/src/main/res/values/styles.xml @@ -21,6 +21,7 @@ <item name="drawer_activated_color">@color/highlight_light</item> <item name="android:textAllCaps">false</item> <item name="android:textColorHint">@color/grey600</item> + <item name="seek_background">@color/seek_background_light</item> <item name="storage">@drawable/ic_storage_black</item> <item name="ic_network">@drawable/ic_network_black</item> @@ -102,6 +103,7 @@ <item name="action_icon_color">@color/white</item> <item name="android:textAllCaps">false</item> <item name="android:textColorHint">@color/medium_gray</item> + <item name="seek_background">@color/seek_background_dark</item> <item name="storage">@drawable/ic_storage_white</item> <item name="ic_network">@drawable/ic_network_white</item> |