mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-19 09:25:34 +00:00
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?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/. -->
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/no_tabs_wrapper"
|
|
android:background="@drawable/empty_session_control_background"
|
|
android:layout_marginBottom="12dp"
|
|
android:padding="16dp"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/no_tab_header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawableEnd="@drawable/ic_tabs"
|
|
android:drawablePadding="8dp"
|
|
android:text="@string/no_open_tabs_header"
|
|
android:textAppearance="@style/HeaderTextStyle"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/no_tab_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:text="@string/no_open_tabs_description"
|
|
android:textColor="?primaryText"
|
|
android:textSize="14sp"
|
|
android:textStyle="normal" />
|
|
|
|
</LinearLayout> |