Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad11b547 authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

fix:3195: bad colors on selected text popup

parent bd88ebbe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ kotlin = "2.2.0"
kotlinx-coroutines = "1.10.2"
kotlinx-serialization-json = "1.9.0"
markwon = "4.6.2"
markwon-compose = "0.5.7"
markwon-compose = "0.5.8"

# Tests
junit = "4.13.2"
+7 −2
Original line number Diff line number Diff line
@@ -17,12 +17,17 @@
  -->

<resources>
    <style name="Theme.EOSNotificationsReceiver" parent="android:Theme.Material.Light.NoActionBar" />
    <style name="Theme.EOSNotificationsReceiver" parent="Theme.MaterialComponents.DayNight.NoActionBar" >
        <item name="colorPrimary">@color/e_accent</item>
        <item name="colorAccent">@color/e_accent</item>
    </style>

    <style name="Theme.EOSNotificationsReceiver.Dialog" parent="android:Theme.Material.Light.Dialog">
    <style name="Theme.EOSNotificationsReceiver.Dialog" parent="Theme.MaterialComponents.DayNight.Dialog">
        <item name="android:windowNoTitle">true</item>
        <item name="android:dialogCornerRadius">28dp</item>
        <item name="android:windowCloseOnTouchOutside">true</item>
        <item name="colorPrimary">@color/e_accent</item>
        <item name="colorAccent">@color/e_accent</item>
    </style>

</resources>