diff --git a/app/src/main/java/org/mozilla/fenix/quickactionsheet/QuickActionSheet.kt b/app/src/main/java/org/mozilla/fenix/quickactionsheet/QuickActionSheet.kt index 24efd6730a..ec86425b62 100644 --- a/app/src/main/java/org/mozilla/fenix/quickactionsheet/QuickActionSheet.kt +++ b/app/src/main/java/org/mozilla/fenix/quickactionsheet/QuickActionSheet.kt @@ -59,6 +59,9 @@ class QuickActionSheet @JvmOverloads constructor( quickActionSheetBehavior: QuickActionSheetBehavior, duration: Long = bounceAnimationLength ) { + val overlay = findViewById(R.id.overlay) + overlay.alpha = 0F + val normalPeekHeight = quickActionSheetBehavior.peekHeight val peakHeightMultiplier = if (duration == demoBounceAnimationLength) diff --git a/app/src/main/res/layout/layout_quick_action_sheet.xml b/app/src/main/res/layout/layout_quick_action_sheet.xml index 1abfb0a2ff..d3caeb0b1f 100644 --- a/app/src/main/res/layout/layout_quick_action_sheet.xml +++ b/app/src/main/res/layout/layout_quick_action_sheet.xml @@ -2,31 +2,31 @@ - + android:layout_height="wrap_content" + android:background="?foundation" + android:orientation="vertical"> - + android:layout_height="1dp" + android:background="?attr/neutral" + android:focusable="false" /> - + - + - - - + + + \ No newline at end of file