Browse Source

Minor style tweaks

arkon 5 years ago
parent
commit
29e453c201

+ 2 - 9
app/src/main/res/layout/main_activity.xml

@@ -19,16 +19,9 @@
 
         <com.google.android.material.tabs.TabLayout
             android:id="@+id/tabs"
-            style="@style/Widget.MaterialComponents.TabLayout.Colored"
+            style="@style/Theme.Widget.Tabs"
             android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            app:tabGravity="center"
-            app:tabIndicator="@drawable/tab_indicator"
-            app:tabIndicatorFullWidth="false"
-            app:tabIndicatorHeight="3dp"
-            app:tabInlineLabel="true"
-            app:tabMinWidth="75dp"
-            app:tabMode="scrollable" />
+            android:layout_height="wrap_content" />
 
     </eu.kanade.tachiyomi.widget.ElevationAppBarLayout>
 

+ 5 - 2
app/src/main/res/layout/manga_info_controller.xml

@@ -287,9 +287,12 @@
             <Button
                 android:id="@+id/manga_info_toggle"
                 style="@style/Theme.Widget.Button"
-                android:layout_width="wrap_content"
+                android:layout_width="match_parent"
                 android:layout_height="wrap_content"
-                android:layout_margin="4dp"
+                android:layout_marginStart="16dp"
+                android:layout_marginTop="4dp"
+                android:layout_marginEnd="16dp"
+                android:layout_marginBottom="4dp"
                 android:text="@string/manga_info_expand"
                 android:textSize="12sp"
                 app:layout_constraintEnd_toEndOf="parent"

+ 15 - 0
app/src/main/res/values/styles.xml

@@ -296,6 +296,21 @@
         <item name="android:paddingStart">8dp</item>
         <item name="android:paddingEnd">8dp</item>
         <item name="iconPadding">0dp</item>
+        <item name="strokeWidth">0dp</item>
+    </style>
+
+
+    <!--=================-->
+    <!--Widgets.TabLayout-->
+    <!--=================-->
+    <style name="Theme.Widget.Tabs" parent="Widget.MaterialComponents.TabLayout.Colored">
+        <item name="tabGravity">center</item>
+        <item name="tabIndicator">@drawable/tab_indicator</item>
+        <item name="tabIndicatorFullWidth">false</item>
+        <item name="tabIndicatorHeight">3dp</item>
+        <item name="tabInlineLabel">true</item>
+        <item name="tabMinWidth">75dp</item>
+        <item name="tabMode">scrollable</item>
     </style>