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

Commit c2ebd505 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Merge branch '000-a15-fixes' into 'v3.0-a15'

Android 15: theme fixes

See merge request e/os/android_frameworks_base!283
parents 3831a8d1 2b6fd022
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
    android:shape="rectangle">
    <solid android:color="?androidprv:attr/materialColorSurfaceContainerHighest"/>
    <solid android:color="@color/e_floating_background"/>
    <corners android:radius="?android:attr/dialogCornerRadius" />
</shape>
+3 −4
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@

    <Button
        android:id="@+id/button1"
        android:drawableTint="@*android:color/e_accent"
        style="@style/SettingsLibActionButton"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
@@ -42,7 +42,7 @@

    <Button
        android:id="@+id/button2"
        android:drawableTint="@*android:color/e_accent"
        style="@style/SettingsLibActionButton"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
@@ -59,7 +59,7 @@

    <Button
        android:id="@+id/button3"
        android:drawableTint="@*android:color/e_accent"
        style="@style/SettingsLibActionButton"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
@@ -76,7 +76,6 @@

    <Button
        android:id="@+id/button4"
        android:drawableTint="@*android:color/e_accent"
        style="@style/SettingsLibActionButton"
        android:layout_width="0dp"
        android:layout_height="match_parent"
+3 −3
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ constructor(
                                        )
                                )
                        )
                        .background(colors.secondary, RoundedCornerShape(50.dp)),
                        .background(colors.primary, RoundedCornerShape(50.dp)),
                onClick = onClick,
            ) {
                Row(
@@ -160,14 +160,14 @@ constructor(
                    Icon(
                        imageVector = Icons.Outlined.Widgets,
                        contentDescription = null,
                        tint = colors.onSecondary,
                        tint = colors.surface,
                        modifier = Modifier.size(20.dp)
                    )
                    Spacer(modifier = Modifier.size(8.dp))
                    Text(
                        text = stringResource(R.string.button_to_configure_widgets_text),
                        style = MaterialTheme.typography.titleSmall,
                        color = colors.onSecondary
                        color = colors.surface
                    )
                }
            }
+1 −1
Original line number Diff line number Diff line
@@ -18,6 +18,6 @@
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
    android:shape="rectangle">
    <solid android:color="?androidprv:attr/colorAccentSecondary"/>
    <solid android:color="@*android:color/e_accent"/>
    <corners android:radius="10dp"/>
</shape>
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@
                  android:autoSizeMaxTextSize="@dimen/clipboard_overlay_max_font"
                  android:textColor="?attr/overlayButtonTextColor"
                  android:textColorLink="?attr/overlayButtonTextColor"
                  android:background="?androidprv:attr/colorAccentSecondary"
                  android:background="@*android:color/e_accent"
                  android:layout_width="@dimen/clipboard_preview_size"
                  android:layout_height="@dimen/clipboard_preview_size"/>
        <ImageView
Loading