diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-04-23 15:32:23 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-04-23 15:32:23 -0400 |
commit | abe80cc31d5a40ebed743085011fbcda0c1a9a10 (patch) | |
tree | fb3762f06b84745b182af281abb107b95a9fcf01 /mobile/android/base/resources/values-large/styles.xml | |
parent | 63295d0087eb58a6eb34cad324c4c53d1b220491 (diff) | |
download | UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.gz UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.lz UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.xz UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.zip |
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
Diffstat (limited to 'mobile/android/base/resources/values-large/styles.xml')
-rw-r--r-- | mobile/android/base/resources/values-large/styles.xml | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/mobile/android/base/resources/values-large/styles.xml b/mobile/android/base/resources/values-large/styles.xml deleted file mode 100644 index 79867a802..000000000 --- a/mobile/android/base/resources/values-large/styles.xml +++ /dev/null @@ -1,89 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- This Source Code Form is subject to the terms of the Mozilla Public - - License, v. 2.0. If a copy of the MPL was not distributed with this - - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> - -<resources> - - <style name="UrlBar.ImageButton" parent="UrlBar.ImageButtonBase"> - <item name="android:layout_width">@dimen/tablet_browser_toolbar_menu_item_width</item> - </style> - - <!-- If this style wasn't actually shared outside the - url bar, this name could be improved (bug 1197424). --> - <style name="UrlBar.ImageButton.BrowserToolbarColors"> - <item name="drawableTintList">@color/action_bar_menu_item_colors</item> - </style> - - <style name="UrlBar.Button.Container"> - <item name="android:layout_marginTop">6dp</item> - <item name="android:layout_marginBottom">6dp</item> - <!-- Start with forward hidden --> - <item name="android:orientation">horizontal</item> - </style> - - <style name="TabsLayout" parent="TabsLayoutBase"> - <item name="android:scrollbars">vertical</item> - </style> - - <style name="TabsItem"> - <item name="android:nextFocusDown">@+id/close</item> - </style> - - <style name="TabsItemClose"> - <item name="android:nextFocusUp">@+id/info</item> - </style> - - <style name="Toast" parent="ToastBase"> - <item name="android:layout_width">400dp</item> - - <!-- Same as pre-19 Toast style, but with no left and right margins. - They're removed since large tablets are never going to be only 400dp wide. --> - </style> - - <style name="Widget.MenuItemActionBar"> - <item name="android:layout_width">wrap_content</item> - <item name="android:layout_height">wrap_content</item> - <item name="android:background">@drawable/browser_toolbar_action_bar_button</item> - <item name="drawableTintList">@color/action_bar_menu_item_colors</item> - <item name="android:scaleType">center</item> - - <!-- layout_width/height doesn't work here, likely because it's only - added programmatically, so we use padding for the width instead. - layout_height is set to MATCH_PARENT programmatically in - org.mozilla.gecko.toolbar.BrowserToolbarTabletBase.addActionItem(View) --> - - <item name="android:paddingLeft">@dimen/tablet_browser_toolbar_menu_item_padding_horizontal</item> - <item name="android:paddingRight">@dimen/tablet_browser_toolbar_menu_item_padding_horizontal</item> - </style> - - <style name="Widget.BookmarksListView" parent="Widget.HomeListView"> - <item name="android:scrollbarStyle">outsideOverlay</item> - </style> - - <style name="Widget.TopSitesGridView" parent="Widget.GridView"> - <item name="android:paddingLeft">5dp</item> - <item name="android:paddingRight">5dp</item> - <item name="android:paddingBottom">30dp</item> - <item name="android:horizontalSpacing">10dp</item> - <item name="android:verticalSpacing">10dp</item> - </style> - - <style name="Widget.TopSitesListView" parent="Widget.BookmarksListView"> - <item name="android:paddingTop">30dp</item> - <item name="android:paddingLeft">32dp</item> - <item name="android:paddingRight">32dp</item> - <item name="android:clipToPadding">false</item> - <item name="topDivider">false</item> - </style> - - <style name="Widget.HomeBanner"> - <item name="android:paddingLeft">32dp</item> - <item name="android:paddingRight">32dp</item> - </style> - - <style name="TextAppearance.UrlBar.Title" parent="TextAppearance.Medium"> - <item name="android:textSize">16sp</item> - </style> - -</resources> |