For #19815 - Keeps tabTray FAB from obstructing last tab (#19891)

* For #19815 - Keeps tabTray FAB from obstructing last tab
upstream-sync
Codrut Topliceanu 3 years ago committed by GitHub
parent ace835d1e8
commit c74bf4e8fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,6 +13,8 @@
android:id="@+id/synced_tabs_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="@dimen/tab_tray_list_bottom_padding"
tools:listitem="@layout/sync_tabs_list_item"/>
</org.mozilla.fenix.tabstray.syncedtabs.SyncedTabsTrayLayout>

@ -151,8 +151,6 @@
android:id="@+id/tabsTray"
android:layout_width="0dp"
android:layout_height="0dp"
android:clipToPadding="false"
android:paddingBottom="140dp"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical"
android:orientation="horizontal"

@ -7,6 +7,8 @@
android:id="@+id/tray_list_item"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="@dimen/tab_tray_list_bottom_padding"
android:visibility="gone"/>
<TextView

@ -7,6 +7,8 @@
android:id="@+id/tray_list_item"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="@dimen/tab_tray_list_bottom_padding"
android:visibility="gone"/>
<TextView

@ -189,6 +189,8 @@
<dimen name="tab_tray_multiselect_handle_top_margin">0dp</dimen>
<dimen name="tab_tray_new_collection_padding_start">24dp</dimen>
<dimen name="tab_tray_new_collection_drawable_padding">28dp</dimen>
<!-- Keeps FAB from covering last item in list. Fab 64dp, top & bottom margins 16dp each. -->
<dimen name="tab_tray_list_bottom_padding">96dp</dimen>
<!-- Saved Logins Fragment -->
<dimen name="saved_logins_sort_menu_dropdown_chevron_icon_margin_start">24dp</dimen>

Loading…
Cancel
Save